#[repr(u8)]pub enum Dma1en {
DISABLED = 0,
TRIGGERD_ON_HOST_READ = 1,
TRIGGERS_ON_HOST_WRITE = 2,
_RESERVED_3 = 3,
}Variants§
DISABLED = 0
Disabled. The DMA channel is not used
TRIGGERD_ON_HOST_READ = 1
Triggers on Host Read empty (whether endpoint and a byte or mailbox and many bytes). Allows reload of memory
TRIGGERS_ON_HOST_WRITE = 2
Triggers on Host Write complete/ready (whether endpoint and a byte or mailbox and many bytes).
_RESERVED_3 = 3
Implementations§
Trait Implementations§
Source§impl Ord for Dma1en
impl Ord for Dma1en
Source§impl PartialOrd for Dma1en
impl PartialOrd for Dma1en
impl Copy for Dma1en
impl Eq for Dma1en
impl StructuralPartialEq for Dma1en
Auto Trait Implementations§
impl Freeze for Dma1en
impl RefUnwindSafe for Dma1en
impl Send for Dma1en
impl Sync for Dma1en
impl Unpin for Dma1en
impl UnwindSafe for Dma1en
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