[][src]Enum async_pop3::POP3Result

pub enum POP3Result {
    POP3Ok,
    POP3Err,
    POP3Stat {
        num_email: i32,
        mailbox_size: i32,
    },
    POP3Uidl {
        emails_metadata: Vec<POP3EmailUidldata>,
    },
    POP3List {
        emails_metadata: Vec<POP3EmailMetadata>,
    },
    POP3Message {
        raw: Vec<String>,
    },
}

Variants

POP3Ok
POP3Err
POP3Stat

Fields of POP3Stat

num_email: i32mailbox_size: i32
POP3Uidl

Fields of POP3Uidl

emails_metadata: Vec<POP3EmailUidldata>
POP3List

Fields of POP3List

emails_metadata: Vec<POP3EmailMetadata>
POP3Message

Fields of POP3Message

raw: Vec<String>

Trait Implementations

impl Debug for POP3Result[src]

Auto Trait Implementations

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> From<T> for T[src]

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

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.