pub enum QueuePriority {
Urgent,
High,
Medium,
Low,
}
Variants§
Trait Implementations§
source§impl Specifier for QueuePriority
impl Specifier for QueuePriority
source§type InOut = QueuePriority
type InOut = QueuePriority
The interface type of the specifier. Read more
source§fn into_bytes(input: Self::InOut) -> Result<Self::Bytes, OutOfBounds>
fn into_bytes(input: Self::InOut) -> Result<Self::Bytes, OutOfBounds>
Converts some bytes into the in-out type. Read more
source§fn from_bytes(
bytes: Self::Bytes,
) -> Result<Self::InOut, InvalidBitPattern<Self::Bytes>>
fn from_bytes( bytes: Self::Bytes, ) -> Result<Self::InOut, InvalidBitPattern<Self::Bytes>>
Converts the given bytes into the in-out type. Read more
Auto Trait Implementations§
impl Freeze for QueuePriority
impl RefUnwindSafe for QueuePriority
impl Send for QueuePriority
impl Sync for QueuePriority
impl Unpin for QueuePriority
impl UnwindSafe for QueuePriority
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