[][src]Enum rp2040::dma::ch8_ctrl_trig::DATA_SIZE_A

#[repr(u8)]pub enum DATA_SIZE_A {
    SIZE_BYTE,
    SIZE_HALFWORD,
    SIZE_WORD,
}

Set the size of each bus transfer (byte/halfword/word). READ_ADDR and WRITE_ADDR advance by this amount (1/2/4 bytes) with each transfer.

Value on reset: 0

Variants

SIZE_BYTE

0: 0

SIZE_HALFWORD

1: 1

SIZE_WORD

2: 10

Trait Implementations

impl Clone for DATA_SIZE_A[src]

impl Copy for DATA_SIZE_A[src]

impl Debug for DATA_SIZE_A[src]

impl PartialEq<DATA_SIZE_A> for DATA_SIZE_A[src]

impl StructuralPartialEq for DATA_SIZE_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.