[][src]Enum lpc11xx::uart::fcr::RXTL_AW

pub enum RXTL_AW {
    ONE_WORD,
    FOUR_WORDS,
    EIGHT_WORDS,
    FOURTEEN_WORDS,
}

RX Trigger Level. These two bits determine how many receiver UART FIFO characters must be written before an interrupt is activated.

Value on reset: 0

Variants

ONE_WORD

0: Trigger level 0 (1 character)

FOUR_WORDS

1: Trigger level 1 (4 characters)

EIGHT_WORDS

2: Trigger level 2 (8 characters)

FOURTEEN_WORDS

3: Trigger level 3 (14 characters)

Trait Implementations

impl Debug for RXTL_AW[src]

impl PartialEq<RXTL_AW> for RXTL_AW[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Copy for RXTL_AW[src]

impl From<RXTL_AW> for u8[src]

impl Clone for RXTL_AW[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Unpin for RXTL_AW

impl Sync for RXTL_AW

impl Send for RXTL_AW

Blanket Implementations

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