[][src]Enum atsame51j::qspi::instrframe::TFRTYPE_A

#[repr(u8)]pub enum TFRTYPE_A {
    READ,
    READMEMORY,
    WRITE,
    WRITEMEMORY,
}

Data Transfer Type

Value on reset: 0

Variants

READ

0: Read transfer from the serial memory.Scrambling is not performed.Read at random location (fetch) in the serial flash memory is not possible.

READMEMORY

1: Read data transfer from the serial memory.If enabled, scrambling is performed.Read at random location (fetch) in the serial flash memory is possible.

WRITE

2: Write transfer into the serial memory.Scrambling is not performed.

WRITEMEMORY

3: Write data transfer into the serial memory.If enabled, scrambling is performed.

Trait Implementations

impl Clone for TFRTYPE_A[src]

impl Copy for TFRTYPE_A[src]

impl Debug for TFRTYPE_A[src]

impl From<TFRTYPE_A> for u8[src]

impl PartialEq<TFRTYPE_A> for TFRTYPE_A[src]

impl StructuralPartialEq for TFRTYPE_A[src]

Auto Trait Implementations

impl Send for TFRTYPE_A

impl Sync for TFRTYPE_A

impl Unpin for TFRTYPE_A

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> Same<T> for T

type Output = T

Should always be Self

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.