pub struct QualityItem<T> {
pub item: T,
pub quality: Quality,
}
Expand description
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.
Implementations§
source§impl<T> QualityItem<T>
impl<T> QualityItem<T>
sourcepub fn new(item: T, quality: Quality) -> QualityItem<T>
pub 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§
source§impl<T> Clone for QualityItem<T>where
T: Clone,
impl<T> Clone for QualityItem<T>where
T: Clone,
source§fn clone(&self) -> QualityItem<T>
fn clone(&self) -> QualityItem<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T> Debug for QualityItem<T>where
T: Debug,
impl<T> Debug for QualityItem<T>where
T: Debug,
source§impl<T> Display for QualityItem<T>where
T: Display,
impl<T> Display for QualityItem<T>where
T: Display,
source§impl<T> FromStr for QualityItem<T>where
T: FromStr,
impl<T> FromStr for QualityItem<T>where
T: FromStr,
source§impl<T> PartialEq for QualityItem<T>where
T: PartialEq,
impl<T> PartialEq for QualityItem<T>where
T: PartialEq,
source§impl<T> PartialOrd for QualityItem<T>where
T: PartialEq,
impl<T> PartialOrd for QualityItem<T>where
T: PartialEq,
impl<T> StructuralPartialEq for QualityItem<T>
Auto Trait Implementations§
impl<T> Freeze for QualityItem<T>where
T: Freeze,
impl<T> RefUnwindSafe for QualityItem<T>where
T: RefUnwindSafe,
impl<T> Send for QualityItem<T>where
T: Send,
impl<T> Sync for QualityItem<T>where
T: Sync,
impl<T> Unpin for QualityItem<T>where
T: Unpin,
impl<T> UnwindSafe for QualityItem<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)