[][src]Struct mime::Name

pub struct Name<'a> { /* fields omitted */ }

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> AsRef<str> for Name<'a>[src]

impl<'a> Clone for Name<'a>[src]

impl<'a> Copy for Name<'a>[src]

impl<'a> Debug for Name<'a>[src]

impl<'a> Display for Name<'a>[src]

impl<'a> Eq for Name<'a>[src]

impl<'a> From<Name<'a>> for &'a str[src]

impl<'a> Hash for Name<'a>[src]

impl<'a> Ord for Name<'a>[src]

impl<'a, 'b> PartialEq<&'b str> for Name<'a>[src]

impl<'a> PartialEq<Name<'a>> for Name<'a>[src]

impl<'a, 'b> PartialEq<Name<'a>> for &'b str[src]

impl<'a> PartialOrd<Name<'a>> for Name<'a>[src]

impl<'a> StructuralEq for Name<'a>[src]

impl<'a> StructuralPartialEq for Name<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Name<'a>

impl<'a> Send for Name<'a>

impl<'a> Sync for Name<'a>

impl<'a> Unpin for Name<'a>

impl<'a> UnwindSafe for Name<'a>

Blanket Implementations

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.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.