#[repr(u8)]pub enum PriorityLevel {
VeryLow = 1,
Low = 2,
Normal = 3,
High = 4,
VeryHigh = 5,
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PriorityLevel
impl Clone for PriorityLevel
Source§fn clone(&self) -> PriorityLevel
fn clone(&self) -> PriorityLevel
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 Debug for PriorityLevel
impl Debug for PriorityLevel
Source§impl PartialEq for PriorityLevel
impl PartialEq for PriorityLevel
impl Copy for PriorityLevel
impl Eq for PriorityLevel
impl StructuralPartialEq for PriorityLevel
Auto Trait Implementations§
impl Freeze for PriorityLevel
impl RefUnwindSafe for PriorityLevel
impl Send for PriorityLevel
impl Sync for PriorityLevel
impl Unpin for PriorityLevel
impl UnwindSafe for PriorityLevel
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