[−][src]Struct mime::Name
A section of a Mime.
For instance, for the Mime image/svg+xml, it contains 3 Names,
image, svg, and xml.
In most cases, Names are compared ignoring case.
Methods
impl<'a> Name<'a>[src]
pub fn as_str(&self) -> &'a str[src]
Get the value of this Name as a string.
Note that the borrow is not tied to &self but the 'a lifetime, allowing the
string to outlive Name. Alternately, there is an impl<'a> From<Name<'a>> for &'a str
which isn't rendered by Rustdoc, that can be accessed using str::from(name) or name.into().
Trait Implementations
impl<'a> PartialEq<Name<'a>> for Name<'a>[src]
impl<'a, 'b> PartialEq<&'b str> for Name<'a>[src]
fn eq(&self, other: &&'b str) -> bool[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl<'a, 'b> PartialEq<Name<'a>> for &'b str[src]
fn eq(&self, other: &Name<'a>) -> bool[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl<'a> AsRef<str> for Name<'a>[src]
impl<'a> Ord for Name<'a>[src]
fn cmp(&self, other: &Name<'a>) -> Ordering[src]
fn max(self, other: Self) -> Self1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
Compares and returns the minimum of two values. Read more
impl<'a> Clone for Name<'a>[src]
fn clone(&self) -> Name<'a>[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl<'a> From<Name<'a>> for &'a str[src]
impl<'a> Eq for Name<'a>[src]
impl<'a> Copy for Name<'a>[src]
impl<'a> PartialOrd<Name<'a>> for Name<'a>[src]
fn partial_cmp(&self, other: &Name<'a>) -> Option<Ordering>[src]
fn lt(&self, other: &Name<'a>) -> bool[src]
fn le(&self, other: &Name<'a>) -> bool[src]
fn gt(&self, other: &Name<'a>) -> bool[src]
fn ge(&self, other: &Name<'a>) -> bool[src]
impl<'a> Debug for Name<'a>[src]
impl<'a> Display for Name<'a>[src]
impl<'a> Hash for Name<'a>[src]
Auto Trait Implementations
Blanket Implementations
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>, [src]
T: From<U>,
type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,