Enum mio_serial::Parity [] [src]

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 Clone for Parity
[src]

[src]

impl PartialEq<Parity> for Parity
[src]

[src]

impl Debug for Parity
[src]

[src]

impl Eq for Parity
[src]