[][src]Enum gattii::Parity

pub enum Parity {
    None,
    Odd,
    Even,
}

Parity checking modes.

When parity checking is enabled (Odd or Even) an extra bit is transmitted with each character. The value of the parity bit is arranged so that the number of 1 bits in the character (including the parity bit) is an even number (Even) or an odd number (Odd).

Parity checking is disabled by setting None, in which case parity bits are not transmitted.

Variants

No parity bit.

Parity bit sets odd number of 1 bits.

Parity bit sets even number of 1 bits.

Trait Implementations

impl Copy for Parity
[src]

impl PartialEq<Parity> for Parity
[src]

This method tests for !=.

impl Clone for Parity
[src]

Performs copy-assignment from source. Read more

impl Debug for Parity
[src]

impl Eq for Parity
[src]

Auto Trait Implementations

impl Send for Parity

impl Sync for Parity

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]