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
date: Option<&'a str>
subject: Option<&'a str>
from: Option<Vec<Address<'a>>>
sender: Option<Vec<Address<'a>>>
reply_to: Option<Vec<Address<'a>>>
to: Option<Vec<Address<'a>>>
cc: Option<Vec<Address<'a>>>
bcc: Option<Vec<Address<'a>>>
in_reply_to: Option<&'a str>
message_id: Option<&'a str>
Trait Implementations
impl<'a> Debug for Envelope<'a>[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more