[−][src]Struct mime::Name
A section of a Mime
.
For instance, for the Mime image/svg+xml
, it contains 3 Name
s,
image
, svg
, and xml
.
In most cases, Name
s 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]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl<'a> Ord for Name<'a>
[src]
fn cmp(&self, other: &Name<'a>) -> Ordering
[src]
#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
[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]
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> 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,
fn borrow_mut(&mut self) -> &mut T
[src]
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,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
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>,
type Error = Infallible
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, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,