Struct reqwest::mime::Name [] [src]

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]

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

[src]

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

[src]

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

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

impl<'a> AsRef<str> for Name<'a>
[src]

[src]

Performs the conversion.

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

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

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

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

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

[src]

Formats the value using the given formatter.

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

[src]

Formats the value using the given formatter. Read more

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

[src]

[src]

[src]

[src]

[src]