Trait mail_parser::MimeHeaders
source · [−]pub trait MimeHeaders<'x> {
fn get_content_description(&self) -> Option<&str>;
fn get_content_disposition(&self) -> Option<&ContentType<'_>>;
fn get_content_id(&self) -> Option<&str>;
fn get_content_transfer_encoding(&self) -> Option<&str>;
fn get_content_type(&self) -> Option<&ContentType<'_>>;
fn get_content_language(&self) -> &HeaderValue<'_>;
fn get_content_location(&self) -> Option<&str>;
fn get_attachment_name(&self) -> Option<&str> { ... }
}Expand description
MIME Header field access trait
Required Methods
sourcefn get_content_description(&self) -> Option<&str>
fn get_content_description(&self) -> Option<&str>
Returns the Content-Description field
sourcefn get_content_disposition(&self) -> Option<&ContentType<'_>>
fn get_content_disposition(&self) -> Option<&ContentType<'_>>
Returns the Content-Disposition field
sourcefn get_content_id(&self) -> Option<&str>
fn get_content_id(&self) -> Option<&str>
Returns the Content-ID field
sourcefn get_content_transfer_encoding(&self) -> Option<&str>
fn get_content_transfer_encoding(&self) -> Option<&str>
Returns the Content-Encoding field
sourcefn get_content_type(&self) -> Option<&ContentType<'_>>
fn get_content_type(&self) -> Option<&ContentType<'_>>
Returns the Content-Type field
sourcefn get_content_language(&self) -> &HeaderValue<'_>
fn get_content_language(&self) -> &HeaderValue<'_>
Returns the Content-Language field
sourcefn get_content_location(&self) -> Option<&str>
fn get_content_location(&self) -> Option<&str>
Returns the Content-Location field
Provided Methods
sourcefn get_attachment_name(&self) -> Option<&str>
fn get_attachment_name(&self) -> Option<&str>
Returns the attachment name, if any.