Enum serial::Parity [] [src]

pub enum Parity {
    ParityNone,
    ParityOdd,
    ParityEven,
}

Parity checking modes.

When parity checking is enabled (ParityOdd or ParityEven) 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 (ParityEven) or an odd number (ParityOdd).

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

Variants

ParityNone

No parity bit.

ParityOdd

Parity bit sets odd number of 1 bits.

ParityEven

Parity bit sets even number of 1 bits.

Trait Implementations

impl Eq for Parity
[src]

impl PartialEq for Parity
[src]

fn eq(&self, __arg_0: &Parity) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Clone for Parity
[src]

fn clone(&self) -> Parity

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl Copy for Parity
[src]

impl Debug for Parity
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.