Struct mime::Name [−][src]
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.
Implementations
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][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src][+]
T: ?Sized,
impl<T> From<T> for T[src][+]
impl<T, U> Into<U> for T where
U: From<T>, [src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src][+]
T: Clone,
impl<T> ToString for T where
T: Display + ?Sized, [src][+]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src][+]
U: TryFrom<T>,