[][src]Struct meli::conf::FileAccount

pub struct FileAccount {
    root_mailbox: String,
    format: String,
    identity: String,
    display_name: Option<String>,
    read_only: bool,
    subscribed_mailboxes: Vec<String>,
    mailboxes: IndexMap<String, FileMailboxConf>,
    search_backend: SearchBackend,
    pub manual_refresh: bool,
    pub refresh_command: Option<String>,
    pub conf_override: MailUIConf,
    pub extra: IndexMap<String, String>,
}

Fields

root_mailbox: Stringformat: Stringidentity: Stringdisplay_name: Option<String>read_only: boolsubscribed_mailboxes: Vec<String>mailboxes: IndexMap<String, FileMailboxConf>search_backend: SearchBackendmanual_refresh: boolrefresh_command: Option<String>conf_override: MailUIConfextra: IndexMap<String, String>

Implementations

impl FileAccount[src]

pub fn mailboxes(&self) -> &IndexMap<String, FileMailboxConf>[src]

pub fn mailbox(&self) -> &str[src]

pub fn search_backend(&self) -> &SearchBackend[src]

Trait Implementations

impl Clone for FileAccount[src]

impl Debug for FileAccount[src]

impl Default for FileAccount[src]

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

impl DotAddressable for FileAccount[src]

impl From<FileAccount> for AccountConf[src]

impl Serialize for FileAccount[src]

Auto Trait Implementations

impl !RefUnwindSafe for FileAccount

impl Send for FileAccount

impl Sync for FileAccount

impl Unpin for FileAccount

impl !UnwindSafe for FileAccount

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]