#[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 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 Debug for PriorityLevel
impl Debug for PriorityLevel
source§impl PartialEq for PriorityLevel
impl PartialEq for PriorityLevel
source§fn eq(&self, other: &PriorityLevel) -> bool
fn eq(&self, other: &PriorityLevel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for PriorityLevel
impl Eq for PriorityLevel
impl StructuralEq for PriorityLevel
impl StructuralPartialEq for PriorityLevel
Auto Trait Implementations§
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