[][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.

Methods

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> Debug for QualityItem<T> where
    T: Debug
[src]

impl<T> PartialEq<QualityItem<T>> for QualityItem<T> where
    T: PartialEq<T>, 
[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> PartialOrd<QualityItem<T>> for QualityItem<T> where
    T: PartialEq<T>, 
[src]

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

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

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

Performs copy-assignment from source. Read more

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T