[][src]Struct mail_test_account::AccountAndServiceInfo

pub struct AccountAndServiceInfo {
    pub account: AccountInfo,
    pub smtp: Option<SmtpInfo>,
    pub imap: Option<ImapInfo>,
    pub pop3: Option<Pop3Info>,
    pub web: Option<WebInfo>,
}

The full info needed to use the test account, including credentials and server info.

Fields

account: AccountInfo

The authentication credentials.

smtp: Option<SmtpInfo>

The SMTP server info.

imap: Option<ImapInfo>

The IMAP server info.

pop3: Option<Pop3Info>

The POP3 server info.

web: Option<WebInfo>

The websites server info.

Trait Implementations

impl Debug for AccountAndServiceInfo[src]

impl Serialize for AccountAndServiceInfo[src]

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

Auto Trait Implementations

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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<T> Any for T where
    T: 'static + ?Sized
[src]

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

impl<T> Erased for T