Struct mime::Mime
[−]
[src]
pub struct Mime { /* fields omitted */ }
A parsed mime or media type.
Methods
impl Mime
[src]
fn type_(&self) -> Name
[src]
Get 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);
fn subtype(&self) -> Name
[src]
Get the subtype of this Mime
.
Example
let mime = mime::TEXT_PLAIN; assert_eq!(mime.subtype(), "plain"); assert_eq!(mime.subtype(), mime::PLAIN);
fn suffix(&self) -> Option<Name>
[src]
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());
fn get_param<'a, N>(&'a self, attr: N) -> Option<Name<'a>> where
N: PartialEq<Name<'a>>,
[src]
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");
fn params<'a>(&'a self) -> Params<'a>
[src]
Returns an iterator over the parameters.
Trait Implementations
impl Clone for Mime
[src]
fn clone(&self) -> Mime
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialEq 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
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl Eq for Mime
[src]
impl PartialOrd 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
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Ord for Mime
[src]
fn cmp(&self, other: &Mime) -> Ordering
[src]
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
Compares and returns the minimum of two values. Read more
impl Hash for Mime
[src]
fn hash<T: Hasher>(&self, hasher: &mut T)
[src]
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]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. 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
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl FromStr for Mime
[src]
type Err = FromStrError
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<Mime, Self::Err>
[src]
Parses a string s
to return a value of this type. Read more