[−][src]Struct actix_web::http::header::QualityItem
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]
T: Debug,
impl<T> PartialEq<QualityItem<T>> for QualityItem<T> where
T: PartialEq<T>,
[src]
T: PartialEq<T>,
fn eq(&self, other: &QualityItem<T>) -> bool
[src]
fn ne(&self, other: &QualityItem<T>) -> bool
[src]
impl<T> Display for QualityItem<T> where
T: Display,
[src]
T: Display,
impl<T> FromStr for QualityItem<T> where
T: FromStr,
[src]
T: FromStr,
type Err = ParseError
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<QualityItem<T>, ParseError>
[src]
impl<T> Clone for QualityItem<T> where
T: Clone,
[src]
T: Clone,
fn clone(&self) -> QualityItem<T>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<T> PartialOrd<QualityItem<T>> for QualityItem<T> where
T: PartialEq<T>,
[src]
T: PartialEq<T>,
fn partial_cmp(&self, other: &QualityItem<T>) -> Option<Ordering>
[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
Auto Trait Implementations
impl<T> Send for QualityItem<T> where
T: Send,
T: Send,
impl<T> Sync for QualityItem<T> where
T: Sync,
T: Sync,
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T> From for T
[src]
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.