pub enum PriorityArg {
Critical,
High,
Medium,
Low,
}Variants§
Trait Implementations§
Source§impl Clone for PriorityArg
impl Clone for PriorityArg
Source§fn clone(&self) -> PriorityArg
fn clone(&self) -> PriorityArg
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PriorityArg
impl Debug for PriorityArg
Source§impl From<PriorityArg> for Priority
impl From<PriorityArg> for Priority
Source§fn from(arg: PriorityArg) -> Self
fn from(arg: PriorityArg) -> Self
Converts to this type from the input type.
Source§impl ValueEnum for PriorityArg
impl ValueEnum for PriorityArg
Auto Trait Implementations§
impl Freeze for PriorityArg
impl RefUnwindSafe for PriorityArg
impl Send for PriorityArg
impl Sync for PriorityArg
impl Unpin for PriorityArg
impl UnsafeUnpin for PriorityArg
impl UnwindSafe for PriorityArg
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