Struct mime::Mime [−][src]
pub struct Mime { /* fields omitted */ }A parsed mime or media type.
Methods
impl Mime[src] 
impl Mimepub fn type_(&self) -> Name[src] 
pub fn type_(&self) -> NameGet the top level media type for this Mime.
Example
let mime = mime::TEXT_PLAIN; assert_eq!(mime.type_(), "text"); assert_eq!(mime.type_(), mime::TEXT);
pub fn subtype(&self) -> Name[src] 
pub fn subtype(&self) -> NameGet the subtype of this Mime.
Example
let mime = mime::TEXT_PLAIN; assert_eq!(mime.subtype(), "plain"); assert_eq!(mime.subtype(), mime::PLAIN);
pub fn suffix(&self) -> Option<Name>[src] 
pub fn suffix(&self) -> Option<Name>Get an optional +suffix for this Mime.
Example
let svg = "image/svg+xml".parse::<mime::Mime>().unwrap(); assert_eq!(svg.suffix(), Some(mime::XML)); assert_eq!(svg.suffix().unwrap(), "xml"); assert!(mime::TEXT_PLAIN.suffix().is_none());
pub fn get_param<'a, N>(&'a self, attr: N) -> Option<Name<'a>> where
    N: PartialEq<Name<'a>>, [src] 
pub fn get_param<'a, N>(&'a self, attr: N) -> Option<Name<'a>> where
    N: PartialEq<Name<'a>>, Look up a parameter by name.
Example
let mime = mime::TEXT_PLAIN_UTF_8; assert_eq!(mime.get_param(mime::CHARSET), Some(mime::UTF_8)); assert_eq!(mime.get_param("charset").unwrap(), "utf-8"); assert!(mime.get_param("boundary").is_none()); let mime = "multipart/form-data; boundary=ABCDEFG".parse::<mime::Mime>().unwrap(); assert_eq!(mime.get_param(mime::BOUNDARY).unwrap(), "ABCDEFG");
ⓘImportant traits for Params<'a>pub fn params<'a>(&'a self) -> Params<'a>[src] 
pub fn params<'a>(&'a self) -> Params<'a>Returns an iterator over the parameters.
Trait Implementations
impl Clone for Mime[src] 
impl Clone for Mimefn clone(&self) -> Mime[src] 
fn clone(&self) -> MimeReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src] 
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl PartialEq for Mime[src] 
impl PartialEq for Mimefn eq(&self, other: &Mime) -> bool[src] 
fn eq(&self, other: &Mime) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src] 
fn ne(&self, other: &Rhs) -> boolThis method tests for !=.
impl Eq for Mime[src] 
impl Eq for Mimeimpl PartialOrd for Mime[src] 
impl PartialOrd for Mimefn partial_cmp(&self, other: &Mime) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Mime) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
fn lt(&self, other: &Rhs) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
fn le(&self, other: &Rhs) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
fn gt(&self, other: &Rhs) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
fn ge(&self, other: &Rhs) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for Mime[src] 
impl Ord for Mimefn cmp(&self, other: &Mime) -> Ordering[src] 
fn cmp(&self, other: &Mime) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src] 
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src] 
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl Hash for Mime[src] 
impl Hash for Mimefn hash<T: Hasher>(&self, hasher: &mut T)[src] 
fn hash<T: Hasher>(&self, hasher: &mut T)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher, 1.3.0[src] 
fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl<'a> PartialEq<&'a str> for Mime[src] 
impl<'a> PartialEq<&'a str> for Mimefn eq(&self, s: &&'a str) -> bool[src] 
fn eq(&self, s: &&'a str) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src] 
fn ne(&self, other: &Rhs) -> boolThis method tests for !=.
impl<'a> PartialEq<Mime> for &'a str[src] 
impl<'a> PartialEq<Mime> for &'a strfn eq(&self, mime: &Mime) -> bool[src] 
fn eq(&self, mime: &Mime) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src] 
fn ne(&self, other: &Rhs) -> boolThis method tests for !=.
impl FromStr for Mime[src] 
impl FromStr for Mimetype Err = FromStrError
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<Mime, Self::Err>[src] 
fn from_str(s: &str) -> Result<Mime, Self::Err>Parses a string s to return a value of this type. Read more
impl AsRef<str> for Mime[src] 
impl AsRef<str> for Mimeimpl Debug for Mime[src] 
impl Debug for Mimefn fmt(&self, f: &mut Formatter) -> Result[src] 
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Display for Mime[src] 
impl Display for Mime