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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EmbeddedPriority
Source§impl Debug for EmbeddedPriority
impl Debug for EmbeddedPriority
impl Eq for EmbeddedPriority
Source§impl PartialEq for EmbeddedPriority
impl PartialEq for EmbeddedPriority
Source§fn eq(&self, other: &EmbeddedPriority) -> bool
fn eq(&self, other: &EmbeddedPriority) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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