[][src]Enum lpc81x_pac::usart0::cfg::PARITYSELW

pub enum PARITYSELW {
    NO_PARITY_,
    RESERVED_,
    EVEN_PARITY_ADDS_A_,
    ODD_PARITY_ADDS_A_B,
}

Values that can be written to the field PARITYSEL

Variants

NO_PARITY_

No parity.

RESERVED_

Reserved.

EVEN_PARITY_ADDS_A_

Even parity. Adds a bit to each character such that the number of 1s in a transmitted character is even, and the number of 1s in a received character is expected to be even.

ODD_PARITY_ADDS_A_B

Odd parity. Adds a bit to each character such that the number of 1s in a transmitted character is odd, and the number of 1s in a received character is expected to be odd.

Trait Implementations

impl PartialEq<PARITYSELW> for PARITYSELW[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl Copy for PARITYSELW[src]

impl Debug for PARITYSELW[src]

impl Clone for PARITYSELW[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for PARITYSELW

impl Sync for PARITYSELW

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