Struct i3status_rs::blocks::calendar::Config
source · pub struct Config {
pub next_event_format: FormatConfig,
pub ongoing_event_format: FormatConfig,
pub no_events_format: FormatConfig,
pub redirect_format: FormatConfig,
pub fetch_interval: Seconds,
pub alternate_events_interval: Seconds,
pub events_within_hours: u32,
pub source: Vec<SourceConfig>,
pub warning_threshold: u32,
pub browser_cmd: ShellString,
}
Fields§
§next_event_format: FormatConfig
§ongoing_event_format: FormatConfig
§no_events_format: FormatConfig
§redirect_format: FormatConfig
§fetch_interval: Seconds
§alternate_events_interval: Seconds
§events_within_hours: u32
§source: Vec<SourceConfig>
§warning_threshold: u32
§browser_cmd: ShellString
Trait Implementations§
source§impl Default for Config
impl Default for Config
source§fn default() -> Self
fn default() -> Self
Return Config { next_event_format: Default::default(), ongoing_event_format: Default::default(), no_events_format: Default::default(), redirect_format: Default::default(), fetch_interval: 60.into(), alternate_events_interval: 10.into(), events_within_hours: 48, source: Default::default(), warning_threshold: 300, browser_cmd: "xdg-open".into() }
source§impl<'de> Deserialize<'de> for Config
impl<'de> Deserialize<'de> for Config
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Config
impl !RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl !UnwindSafe for Config
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<T> NoneValue for Twhere
T: Default,
impl<T> NoneValue for Twhere
T: Default,
type NoneType = T
§fn null_value() -> T
fn null_value() -> T
The none-equivalent value.