[][src]Enum lpc82x_pac::spi0::txdatctl::EOF_A

pub enum EOF_A {
    DATA_NOT_EOF,
    DATA_EOF,
}

End of Frame. Between frames, a delay may be inserted, as defined by the FRAME_DELAY value in the DLY register. The end of a frame may not be particularly meaningful if the FRAME_DELAY value = 0. This control can be used as part of the support for frame lengths greater than 16 bits.

Value on reset: 0

Variants

DATA_NOT_EOF

0: This piece of data transmitted is not treated as the end of a frame.

DATA_EOF

1: This piece of data is treated as the end of a frame, causing the FRAME_DELAY time to be inserted before subsequent data is transmitted.

Trait Implementations

impl From<EOF_A> for bool[src]

impl Debug for EOF_A[src]

impl PartialEq<EOF_A> for EOF_A[src]

impl Copy for EOF_A[src]

impl Clone for EOF_A[src]

Auto Trait Implementations

impl Unpin for EOF_A

impl Send for EOF_A

impl Sync for EOF_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