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

[src]

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

1.0.0
[src]

This method tests for !=.

impl Clone for Parity
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for Parity
[src]

impl Debug for Parity
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Parity

impl Sync for Parity