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 StructuralEq for Dma
impl StructuralPartialEq for Dma
Auto Trait Implementations
impl RefUnwindSafe for Dma
impl Send for Dma
impl Sync for Dma
impl Unpin for Dma
impl UnwindSafe for Dma
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more