Enum mio_serial::Parity [−][src]
pub enum Parity {
None,
Odd,
Even,
}Expand description
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
Auto Trait Implementations
impl RefUnwindSafe for Parity
impl UnwindSafe for Parity
Blanket Implementations
Mutably borrows from an owned value. Read more