#[repr(C)]pub struct Priority { /* private fields */ }
Expand description
Extensible Priorities parameters.
The TryFrom
trait supports constructing this object from the serialized
Structured Fields Dictionary field value. I.e, use TryFrom
to parse the
value of a Priority header field or a PRIORITY_UPDATE frame. Using this
trait requires the sfv
feature to be enabled.
Implementations§
Trait Implementations§
Source§impl TryFrom<&[u8]> for Priority
Available on crate feature sfv
only.
impl TryFrom<&[u8]> for Priority
Available on crate feature
sfv
only.Source§fn try_from(value: &[u8]) -> Result<Self, Self::Error>
fn try_from(value: &[u8]) -> Result<Self, Self::Error>
Try to parse an Extensible Priority field value.
The field value is expected to be a Structured Fields Dictionary; see Extensible Priorities.
If the u
or i
fields are contained with correct types, a constructed
Priority object is returned. Note that urgency values outside of valid
range (0 through 7) are clamped to 7.
If the u
or i
fields are contained with the wrong types,
Error::Done is returned.
Omitted parameters will yield default values.
impl Eq for Priority
impl StructuralPartialEq for Priority
Auto Trait Implementations§
impl Freeze for Priority
impl RefUnwindSafe for Priority
impl Send for Priority
impl Sync for Priority
impl Unpin for Priority
impl UnwindSafe for Priority
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more