[][src]Enum efm32gg11b820::ldma::ch5_ctrl::DSTINC_A

#[repr(u8)]pub enum DSTINC_A {
    ONE,
    TWO,
    FOUR,
    NONE,
}

Destination Address Increment Size

Value on reset: 0

Variants

ONE

0: Increment destination address by one unit data size after each write

TWO

1: Increment destination address by two unit data sizes after each write

FOUR

2: Increment destination address by four unit data sizes after each write

NONE

3: Do not increment the destination address. Writes are made to a fixed destination address, for example writing to a FIFO.

Trait Implementations

impl Clone for DSTINC_A[src]

impl Copy for DSTINC_A[src]

impl Debug for DSTINC_A[src]

impl From<DSTINC_A> for u8[src]

impl PartialEq<DSTINC_A> for DSTINC_A[src]

impl StructuralPartialEq for DSTINC_A[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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> 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.