pub struct Mime { /* fields omitted */ }A parsed mime or media type.
Get the top level media type for this Mime.
let mime = mime::TEXT_PLAIN;
assert_eq!(mime.type_(), "text");
assert_eq!(mime.type_(), mime::TEXT);
Get the subtype of this Mime.
let mime = mime::TEXT_PLAIN;
assert_eq!(mime.subtype(), "plain");
assert_eq!(mime.subtype(), mime::PLAIN);
Get an optional +suffix for this Mime.
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());
Look up a parameter by name.
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");
Returns an iterator over the parameters.
pub fn essence_str(&self) -> &str[src]
impl AsRef<str> for Mime[src]
impl Clone for Mime[src]
impl Debug for Mime[src]
impl Display for Mime[src]
impl FromStr for Mime[src]
impl Hash for Mime[src]
impl Ord for Mime[src]
fn cmp(&self, other: &Mime) -> Ordering[src]
#[must_use]
pub fn max(self, other: Self) -> Self1.21.0[src]
Compares and returns the maximum of two values. Read more
#[must_use]
pub fn min(self, other: Self) -> Self1.21.0[src]
Compares and returns the minimum of two values. Read more
#[must_use]
pub fn clamp(self, min: Self, max: Self) -> Self1.50.0[src]
Restrict a value to a certain interval. Read more
impl<'a> PartialEq<&'a str> for Mime[src]
fn eq(&self, s: &&'a str) -> bool[src]
This method tests for self and other values to be equal, and is used
by ==. Read more
#[must_use]
pub fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl PartialEq<Mime> for Mime[src]
fn eq(&self, other: &Mime) -> bool[src]
This method tests for self and other values to be equal, and is used
by ==. Read more
#[must_use]
pub fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl<'a> PartialEq<Mime> for &'a str[src]
fn eq(&self, mime: &Mime) -> bool[src]
This method tests for self and other values to be equal, and is used
by ==. Read more
#[must_use]
pub fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl PartialOrd<Mime> for Mime[src]
fn partial_cmp(&self, other: &Mime) -> Option<Ordering>[src]
This method returns an ordering between self and other values if one exists. Read more
#[must_use]
pub fn lt(&self, other: &Rhs) -> bool1.0.0[src]
This method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]
pub fn le(&self, other: &Rhs) -> bool1.0.0[src]
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
#[must_use]
pub fn gt(&self, other: &Rhs) -> bool1.0.0[src]
This method tests greater than (for self and other) and is used by the > operator. Read more
#[must_use]
pub fn ge(&self, other: &Rhs) -> bool1.0.0[src]
This method tests greater than or equal to (for self and other) and is used by the >=
operator. Read more
impl Eq for Mime[src]
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> ToOwned for T where
T: Clone, [src]
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> ToString for T where
T: Display + ?Sized, [src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]