Struct panorama_imap::response::Envelope[][src]

pub struct Envelope {
    pub date: Option<String>,
    pub subject: Option<String>,
    pub from: Option<Vec<Address>>,
    pub sender: Option<Vec<Address>>,
    pub reply_to: Option<Vec<Address>>,
    pub to: Option<Vec<Address>>,
    pub cc: Option<Vec<Address>>,
    pub bcc: Option<Vec<Address>>,
    pub in_reply_to: Option<String>,
    pub message_id: Option<String>,
}

Fields

date: Option<String>subject: Option<String>from: Option<Vec<Address>>sender: Option<Vec<Address>>reply_to: Option<Vec<Address>>to: Option<Vec<Address>>cc: Option<Vec<Address>>bcc: Option<Vec<Address>>in_reply_to: Option<String>message_id: Option<String>

Trait Implementations

impl Clone for Envelope[src]

impl Debug for Envelope[src]

impl Default for Envelope[src]

impl Eq for Envelope[src]

impl PartialEq<Envelope> for Envelope[src]

impl StructuralEq for Envelope[src]

impl StructuralPartialEq for Envelope[src]

Auto Trait Implementations

impl RefUnwindSafe for Envelope[src]

impl Send for Envelope[src]

impl Sync for Envelope[src]

impl Unpin for Envelope[src]

impl UnwindSafe for Envelope[src]

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> 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.