Enum stm32wlxx_hal::dma::Priority
source · #[repr(u32)]pub enum Priority {
Low = 0,
Medium = 1,
High = 2,
VeryHigh = 3,
}
Expand description
Priority levels.
Variants§
Low = 0
Low priority
Medium = 1
Medium priority
High = 2
High priority
VeryHigh = 3
Very high priority
Trait Implementations§
source§impl Ord for Priority
impl Ord for Priority
source§impl PartialEq for Priority
impl PartialEq for Priority
source§impl PartialOrd for Priority
impl PartialOrd for Priority
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for Priority
impl StructuralEq for Priority
impl StructuralPartialEq for Priority
Auto Trait Implementations§
impl RefUnwindSafe for Priority
impl Send for Priority
impl Sync for Priority
impl Unpin for Priority
impl UnwindSafe for Priority
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