[][src]Struct http_types::content::MediaTypeProposal

pub struct MediaTypeProposal { /* fields omitted */ }

A proposed Media Type for the Accept header.

Implementations

impl MediaTypeProposal[src]

pub fn new(media_type: impl Into<Mime>, weight: Option<f32>) -> Result<Self>[src]

Create a new instance of MediaTypeProposal.

pub fn media_type(&self) -> &Mime[src]

Get the proposed media_type.

pub fn weight(&self) -> Option<f32>[src]

Get the weight of the proposal.

Methods from Deref<Target = Mime>

pub fn basetype(&self) -> &str[src]

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.

pub fn subtype(&self) -> &str[src]

Access the Mime's subtype value.

pub fn essence(&self) -> &str[src]

Access the Mime's essence value.

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

Get a reference to a param.

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

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

Trait Implementations

impl Clone for MediaTypeProposal[src]

impl Debug for MediaTypeProposal[src]

impl Deref for MediaTypeProposal[src]

type Target = Mime

The resulting type after dereferencing.

impl DerefMut for MediaTypeProposal[src]

impl From<MediaTypeProposal> for Mime[src]

impl From<MediaTypeProposal> for HeaderValue[src]

impl From<Mime> for MediaTypeProposal[src]

impl PartialEq<MediaTypeProposal> for MediaTypeProposal[src]

impl PartialEq<Mime> for MediaTypeProposal[src]

impl PartialEq<Mime> for &MediaTypeProposal[src]

impl PartialOrd<MediaTypeProposal> for MediaTypeProposal[src]

impl StructuralPartialEq for MediaTypeProposal[src]

Auto Trait Implementations

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> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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