[][src]Struct libimagmail::mail::MailHeader

pub struct MailHeader<'a>(_);

Methods

impl<'a> MailHeader<'a>[src]

pub fn get_field(&self, field: &str) -> Result<Option<String>>[src]

Get a value of a single field of the mail file

pub fn get_from(&self) -> Result<Option<String>>[src]

Get a value of the From field of the mail file

pub fn get_to(&self) -> Result<Option<String>>[src]

Get a value of the To field of the mail file

pub fn get_subject(&self) -> Result<Option<String>>[src]

Get a value of the Subject field of the mail file

pub fn get_message_id(&self) -> Result<Option<String>>[src]

Get a value of the Message-ID field of the mail file

pub fn get_in_reply_to(&self) -> Result<Option<String>>[src]

Get a value of the In-Reply-To field of the mail file

Trait Implementations

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

impl<'a> From<Vec<MailHeader<'a>>> for MailHeader<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for MailHeader<'a>

impl<'a> Send for MailHeader<'a>

impl<'a> Sync for MailHeader<'a>

impl<'a> Unpin for MailHeader<'a>

impl<'a> UnwindSafe for MailHeader<'a>

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> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,