[][src]Struct meli::conf::FileSettings

pub struct FileSettings {
    pub accounts: IndexMap<String, FileAccount>,
    pub pager: PagerSettings,
    pub listing: ListingSettings,
    pub notifications: NotificationsSettings,
    pub shortcuts: Shortcuts,
    pub composing: ComposingSettings,
    pub tags: TagsSettings,
    pub pgp: PGPSettings,
    pub terminal: TerminalSettings,
    pub log: LogSettings,
}

Fields

accounts: IndexMap<String, FileAccount>pager: PagerSettingslisting: ListingSettingsnotifications: NotificationsSettingsshortcuts: Shortcutscomposing: ComposingSettingstags: TagsSettingspgp: PGPSettingsterminal: TerminalSettingslog: LogSettings

Implementations

impl FileSettings[src]

pub fn new() -> Result<FileSettings>[src]

pub fn validate(path: PathBuf) -> Result<Self>[src]

Trait Implementations

impl Clone for FileSettings[src]

impl Debug for FileSettings[src]

impl Default for FileSettings[src]

impl<'de> Deserialize<'de> for FileSettings[src]

impl Serialize for FileSettings[src]

Auto Trait Implementations

impl !RefUnwindSafe for FileSettings

impl Send for FileSettings

impl Sync for FileSettings

impl Unpin for FileSettings

impl !UnwindSafe for FileSettings

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]