pub enum Dma {
Disabled,
Single,
Continuous,
}
Expand description
DMA mode
Variants§
Disabled
No DMA, disabled
Single
Single DMA, DMA will be disabled after each conversion sequence
Continuous
Continuous DMA, DMA will remain enabled after conversion
Trait Implementations§
impl Copy for Dma
impl Eq for Dma
impl StructuralPartialEq for Dma
Auto Trait Implementations§
impl Freeze for Dma
impl RefUnwindSafe for Dma
impl Send for Dma
impl Sync for Dma
impl Unpin for Dma
impl UnwindSafe for Dma
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