#[repr(u8)]pub enum DmaI {
NOT_USED = 0,
PUSH = 1,
}Variants§
NOT_USED = 0
DMA is not used. Processor writes the necessary words when WAITING is set (interrupts), unless AHB Master is used.
PUSH = 1
DMA will push in the data.
Implementations§
Trait Implementations§
Source§impl Ord for DmaI
impl Ord for DmaI
Source§impl PartialOrd for DmaI
impl PartialOrd for DmaI
impl Copy for DmaI
impl Eq for DmaI
impl StructuralPartialEq for DmaI
Auto Trait Implementations§
impl Freeze for DmaI
impl RefUnwindSafe for DmaI
impl Send for DmaI
impl Sync for DmaI
impl Unpin for DmaI
impl UnwindSafe for DmaI
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