pub enum PrdPriorityArg {
Low,
Medium,
High,
Critical,
}Variants§
Trait Implementations§
Source§impl Clone for PrdPriorityArg
impl Clone for PrdPriorityArg
Source§fn clone(&self) -> PrdPriorityArg
fn clone(&self) -> PrdPriorityArg
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 PrdPriorityArg
impl Debug for PrdPriorityArg
Source§impl From<PrdPriorityArg> for TaskPriority
impl From<PrdPriorityArg> for TaskPriority
Source§fn from(value: PrdPriorityArg) -> Self
fn from(value: PrdPriorityArg) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PrdPriorityArg
impl PartialEq for PrdPriorityArg
Source§impl ValueEnum for PrdPriorityArg
impl ValueEnum for PrdPriorityArg
impl Copy for PrdPriorityArg
impl StructuralPartialEq for PrdPriorityArg
Auto Trait Implementations§
impl Freeze for PrdPriorityArg
impl RefUnwindSafe for PrdPriorityArg
impl Send for PrdPriorityArg
impl Sync for PrdPriorityArg
impl Unpin for PrdPriorityArg
impl UnsafeUnpin for PrdPriorityArg
impl UnwindSafe for PrdPriorityArg
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