Struct hyper::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

item

The actual contents of the field.

quality

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

Methods

impl<T> QualityItem<T>

fn new(item: T, quality: Quality) -> QualityItem<T>

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: PartialEq> PartialOrd for QualityItem<T>

fn partial_cmp(&self, other: &QualityItem<T>) -> Option<Ordering>

fn lt(&self, other: &Rhs) -> bool

fn le(&self, other: &Rhs) -> bool

fn gt(&self, other: &Rhs) -> bool

fn ge(&self, other: &Rhs) -> bool

impl<T: Display> Display for QualityItem<T>

fn fmt(&self, f: &mut Formatter) -> Result

impl<T: FromStr> FromStr for QualityItem<T>

type Err = Error

fn from_str(s: &str) -> Result<QualityItem<T>>

Derived Implementations

impl<T: Debug> Debug for QualityItem<T>

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl<T: PartialEq> PartialEq for QualityItem<T>

fn eq(&self, __arg_0: &QualityItem<T>) -> bool

fn ne(&self, __arg_0: &QualityItem<T>) -> bool

impl<T: Clone> Clone for QualityItem<T>

fn clone(&self) -> QualityItem<T>

fn clone_from(&mut self, source: &Self)