[][src]Enum efm32pg12_pac::crypto0::ctrl::DMA1MODE_A

pub enum DMA1MODE_A {
    FULL,
    LENLIMIT,
    FULLBYTE,
    LENLIMITBYTE,
}

DMA1 Read Mode

Value on reset: 0

Variants

FULL

0: Target register is fully read/written during every DMA transaction

LENLIMIT

1: Length Limited. When the current length, i.e. LENGTHA or LENGTHB indicates that there are less bytes available than the register size, only length + 1 bytes + necessary zero padding is read. Zero padding is automatically added when writing.

FULLBYTE

2: Target register is fully read/written during every DMA transaction. Bytewise DMA.

LENLIMITBYTE

3: Length Limited. When the current length, i.e. LENGTHA or LENGTHB indicates that there are less bytes available than the register size, only length + 1 bytes + necessary zero padding is read. Bytewise DMA. Zero padding is automatically added when writing.

Trait Implementations

impl From<DMA1MODE_A> for u8[src]

impl Debug for DMA1MODE_A[src]

impl PartialEq<DMA1MODE_A> for DMA1MODE_A[src]

impl Copy for DMA1MODE_A[src]

impl StructuralPartialEq for DMA1MODE_A[src]

impl Clone for DMA1MODE_A[src]

Auto Trait Implementations

impl Unpin for DMA1MODE_A

impl Send for DMA1MODE_A

impl Sync for DMA1MODE_A

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self