[−][src]Struct hyper::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: Clone> Clone for QualityItem<T>
[src]
fn clone(&self) -> QualityItem<T>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T: Debug> Debug for QualityItem<T>
[src]
impl<T: Display> Display for QualityItem<T>
[src]
impl<T: FromStr> FromStr for QualityItem<T>
[src]
type Err = Error
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<QualityItem<T>>
[src]
impl<T: PartialEq> PartialEq<QualityItem<T>> for QualityItem<T>
[src]
fn eq(&self, other: &QualityItem<T>) -> bool
[src]
fn ne(&self, other: &QualityItem<T>) -> bool
[src]
impl<T: PartialEq> PartialOrd<QualityItem<T>> for QualityItem<T>
[src]
fn partial_cmp(&self, other: &QualityItem<T>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<T> StructuralPartialEq for QualityItem<T>
[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for QualityItem<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for QualityItem<T> where
T: Send,
T: Send,
impl<T> Sync for QualityItem<T> where
T: Sync,
T: Sync,
impl<T> Unpin for QualityItem<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for QualityItem<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> 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, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,