pub struct Mime { /* private fields */ }
Expand description

An IANA media type.

use http_types::Mime;
use std::str::FromStr;

let mime = Mime::from_str("text/html;charset=utf-8").unwrap();
assert_eq!(mime.essence(), "text/html");
assert_eq!(mime.param("charset").unwrap(), "utf-8");

Implementations§

source§

impl Mime

source

pub fn sniff(bytes: &[u8]) -> Result<Self>

Sniff the mime type from a byte slice.

source

pub fn from_extension(extension: impl AsRef<str>) -> Option<Self>

Guess the mime type from a file extension

source

pub fn basetype(&self) -> &str

Access the Mime’s type value.

According to the spec this method should be named type, but that’s a reserved keyword in Rust so hence prefix with base instead.

source

pub fn subtype(&self) -> &str

Access the Mime’s subtype value.

source

pub fn essence(&self) -> &str

Access the Mime’s essence value.

source

pub fn param(&self, name: impl Into<ParamName>) -> Option<&ParamValue>

Get a reference to a param.

source

pub fn remove_param(&mut self, name: impl Into<ParamName>) -> Option<ParamValue>

Remove a param from the set. Returns the ParamValue if it was contained within the set.

Trait Implementations§

source§

impl Clone for Mime

source§

fn clone(&self) -> Mime

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Mime

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Mime

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<&Mime> for HeaderValue

source§

fn from(mime: &Mime) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a str> for Mime

source§

fn from(value: &'a str) -> Self

Converts to this type from the input type.
source§

impl From<MediaTypeProposal> for Mime

source§

fn from(accept: MediaTypeProposal) -> Self

Converts to this type from the input type.
source§

impl From<Mime> for ContentType

source§

fn from(media_type: Mime) -> Self

Converts to this type from the input type.
source§

impl From<Mime> for HeaderValue

source§

fn from(mime: Mime) -> Self

Converts to this type from the input type.
source§

impl From<Mime> for MediaTypeProposal

source§

fn from(media_type: Mime) -> Self

Converts to this type from the input type.
source§

impl FromStr for Mime

source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Create a new Mime.

Follows the WHATWG MIME parsing algorithm.

§

type Err = Error

The associated error which can be returned from parsing.
source§

impl PartialEq<&Mime> for ContentType

source§

fn eq(&self, other: &&Mime) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Mime> for &MediaTypeProposal

source§

fn eq(&self, other: &Mime) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Mime> for ContentType

source§

fn eq(&self, other: &Mime) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Mime> for MediaTypeProposal

source§

fn eq(&self, other: &Mime) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq for Mime

source§

fn eq(&self, other: &Mime) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl ToHeaderValues for Mime

§

type Iter = IntoIter<HeaderValue>

Returned iterator over header values which this type may correspond to.
source§

fn to_header_values(&self) -> Result<Self::Iter>

Converts this object to an iterator of resolved HeaderValues.
source§

impl Eq for Mime

source§

impl StructuralPartialEq for Mime

Auto Trait Implementations§

§

impl RefUnwindSafe for Mime

§

impl Send for Mime

§

impl Sync for Mime

§

impl Unpin for Mime

§

impl UnwindSafe for Mime

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more