Enum ChCrPrio
#[repr(u8)]pub enum ChCrPrio {
LOWWITHLOWHWEIGHT = 0,
LOWWITHMIDWEIGHT = 1,
LOWWITHHIGHWEIGHT = 2,
HIGH = 3,
}
Variants§
LOWWITHLOWHWEIGHT = 0
low priority, low weight
LOWWITHMIDWEIGHT = 1
low priority, mid weight
LOWWITHHIGHWEIGHT = 2
low priority, high weight
HIGH = 3
high priority
Implementations§
Trait Implementations§
§impl Ord for ChCrPrio
impl Ord for ChCrPrio
§impl PartialOrd for ChCrPrio
impl PartialOrd for ChCrPrio
impl Copy for ChCrPrio
impl Eq for ChCrPrio
impl StructuralPartialEq for ChCrPrio
Auto Trait Implementations§
impl Freeze for ChCrPrio
impl RefUnwindSafe for ChCrPrio
impl Send for ChCrPrio
impl Sync for ChCrPrio
impl Unpin for ChCrPrio
impl UnwindSafe for ChCrPrio
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