[][src]Struct typed_headers::QualityItem

pub struct QualityItem<T> {
    pub item: T,
    pub quality: Quality,
}

A value paired with its "quality" as defined in RFC7231.

Quality items are used in content negotiation headers such as Accept and Accept-Encoding.

Fields

item: Tquality: Quality

Methods

impl<T> QualityItem<T>[src]

pub fn new(item: T, quality: Quality) -> QualityItem<T>[src]

Creates a new quality item.

Trait Implementations

impl<T: PartialEq> PartialEq<QualityItem<T>> for QualityItem<T>[src]

impl<T: Clone> Clone for QualityItem<T>[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T> Display for QualityItem<T> where
    T: Display
[src]

impl<T: Debug> Debug for QualityItem<T>[src]

impl<T> FromStr for QualityItem<T> where
    T: FromStr
[src]

type Err = T::Err

The associated error which can be returned from parsing.

Auto Trait Implementations

impl<T> Send for QualityItem<T> where
    T: Send

impl<T> Sync for QualityItem<T> where
    T: Sync

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

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

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto 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<T> Any for T where
    T: 'static + ?Sized
[src]