Struct imap_proto::types::Envelope [] [src]

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

Fields

Trait Implementations

impl<'a> Debug for Envelope<'a>
[src]

[src]

Formats the value using the given formatter. Read more

impl<'a> Eq for Envelope<'a>
[src]

impl<'a> PartialEq for Envelope<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

Auto Trait Implementations

impl<'a> Send for Envelope<'a>

impl<'a> Sync for Envelope<'a>