#[non_exhaustive]pub enum QualityOfServiceClassFloorError {
InvalidRelativePriority,
}Expand description
Error returned by DispatchObject::set_qos_class_floor.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
InvalidRelativePriority
The relative priority is invalid.
Trait Implementations§
Source§impl Clone for QualityOfServiceClassFloorError
impl Clone for QualityOfServiceClassFloorError
Source§fn clone(&self) -> QualityOfServiceClassFloorError
fn clone(&self) -> QualityOfServiceClassFloorError
Returns a duplicate 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 Ord for QualityOfServiceClassFloorError
impl Ord for QualityOfServiceClassFloorError
Source§fn cmp(&self, other: &QualityOfServiceClassFloorError) -> Ordering
fn cmp(&self, other: &QualityOfServiceClassFloorError) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for QualityOfServiceClassFloorError
impl PartialEq for QualityOfServiceClassFloorError
Source§fn eq(&self, other: &QualityOfServiceClassFloorError) -> bool
fn eq(&self, other: &QualityOfServiceClassFloorError) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for QualityOfServiceClassFloorError
impl PartialOrd for QualityOfServiceClassFloorError
impl Copy for QualityOfServiceClassFloorError
impl Eq for QualityOfServiceClassFloorError
impl StructuralPartialEq for QualityOfServiceClassFloorError
Auto Trait Implementations§
impl Freeze for QualityOfServiceClassFloorError
impl RefUnwindSafe for QualityOfServiceClassFloorError
impl Send for QualityOfServiceClassFloorError
impl Sync for QualityOfServiceClassFloorError
impl Unpin for QualityOfServiceClassFloorError
impl UnwindSafe for QualityOfServiceClassFloorError
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