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

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

Possible values of 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.

Methods

impl PARITYSELR[src]

pub fn bits(&self) -> u8[src]

Value of the field as raw bits

pub fn is_no_parity_(&self) -> bool[src]

Checks if the value of the field is NO_PARITY_

pub fn is_reserved_(&self) -> bool[src]

Checks if the value of the field is RESERVED_

pub fn is_even_parity_adds_a_(&self) -> bool[src]

Checks if the value of the field is EVEN_PARITY_ADDS_A_

pub fn is_odd_parity_adds_a_b(&self) -> bool[src]

Checks if the value of the field is ODD_PARITY_ADDS_A_B

Trait Implementations

impl PartialEq<PARITYSELR> for PARITYSELR[src]

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

This method tests for !=.

impl Debug for PARITYSELR[src]

impl Copy for PARITYSELR[src]

impl Clone for PARITYSELR[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 PARITYSELR

impl Sync for PARITYSELR

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