pub enum Priority {
Low,
Medium,
High,
VeryHigh,
}
Expand description
Priority of the DMA stream, defaults to Medium
. If two requests have the same software
priority level, the stream with the lower number takes priority over the stream with the
higher number. For example, Stream 2 takes priority over Stream 4.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Priority
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