pub enum EmbeddedPriority {
Low = 0,
Normal = 1,
High = 2,
Critical = 3,
}Expand description
Embedded task priority
Variants§
Trait Implementations§
Source§impl Clone for EmbeddedPriority
impl Clone for EmbeddedPriority
Source§fn clone(&self) -> EmbeddedPriority
fn clone(&self) -> EmbeddedPriority
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 EmbeddedPriority
impl Debug for EmbeddedPriority
Source§impl PartialEq for EmbeddedPriority
impl PartialEq for EmbeddedPriority
impl Copy for EmbeddedPriority
impl Eq for EmbeddedPriority
impl StructuralPartialEq for EmbeddedPriority
Auto Trait Implementations§
impl Freeze for EmbeddedPriority
impl RefUnwindSafe for EmbeddedPriority
impl Send for EmbeddedPriority
impl Sync for EmbeddedPriority
impl Unpin for EmbeddedPriority
impl UnwindSafe for EmbeddedPriority
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