Struct reqwest::header::QualityItem [] [src]

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

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

Fields

The actual contents of the field.

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

Methods

impl<T> 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]

Formats the value using the given formatter.

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

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

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

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

Formats the value using the given formatter.

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more