pub struct MxrConfig {
pub general: GeneralConfig,
pub accounts: HashMap<String, AccountConfig>,
pub render: RenderConfig,
pub search: SearchConfig,
pub snooze: SnoozeConfig,
pub logging: LoggingConfig,
pub appearance: AppearanceConfig,
}Expand description
Top-level mxr configuration.
Fields§
§general: GeneralConfig§accounts: HashMap<String, AccountConfig>§render: RenderConfig§search: SearchConfig§snooze: SnoozeConfig§logging: LoggingConfig§appearance: AppearanceConfigTrait Implementations§
Source§impl<'de> Deserialize<'de> for MxrConfig
impl<'de> Deserialize<'de> for MxrConfig
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 MxrConfig
impl RefUnwindSafe for MxrConfig
impl Send for MxrConfig
impl Sync for MxrConfig
impl Unpin for MxrConfig
impl UnsafeUnpin for MxrConfig
impl UnwindSafe for MxrConfig
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