[][src]Enum lpc54606_pac::spi0::fifowr::EOF_AW

pub enum EOF_AW {
    NOT_EOF,
    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

NOT_EOF

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

EOF

1: Data EOF. 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 Clone for EOF_AW[src]

impl Copy for EOF_AW[src]

impl Debug for EOF_AW[src]

impl From<EOF_AW> for bool[src]

impl PartialEq<EOF_AW> for EOF_AW[src]

impl StructuralPartialEq for EOF_AW[src]

Auto Trait Implementations

impl Send for EOF_AW

impl Sync for EOF_AW

impl Unpin for EOF_AW

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.