[][src]Struct actix_web::http::header::QualityItem

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

Represents an item with a quality value as defined in RFC7231.

Fields

item: T

The actual contents of the field.

quality: Quality

The quality (client or server preference) for the value.

Implementations

impl<T> QualityItem<T>[src]

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

Creates a new QualityItem from an item and a quality. The item can be of any type. The quality should be a value in the range [0, 1].

Trait Implementations

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

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

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

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

type Err = ParseError

The associated error which can be returned from parsing.

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

impl<T> PartialOrd<QualityItem<T>> for QualityItem<T> where
    T: PartialEq<T>, 
[src]

impl<T> StructuralPartialEq for QualityItem<T>[src]

Auto Trait Implementations

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

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

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

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

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

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> Instrument for T[src]

impl<T> Instrument 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> ToString for T where
    T: Display + ?Sized
[src]

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>,