Trait mail_parser::MimeFieldGet[][src]

pub trait MimeFieldGet<'x> {
    fn get_content_description(&self) -> Option<&Cow<'x, str>>;
fn get_content_disposition(&self) -> Option<&ContentType<'x>>;
fn get_content_id(&self) -> Option<&Cow<'x, str>>;
fn get_content_transfer_encoding(&self) -> Option<&Cow<'x, str>>;
fn get_content_type(&self) -> Option<&ContentType<'x>>; }
Expand description

MIME header fields.

Required methods

Content-Description MIME header

Content-Disposition MIME header

Content-ID MIME header

Content-Transfer-Encoding MIME header

Content-Type MIME header

Implementors