Enum serial_core::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
ParityNoneNo parity bit.
ParityOddParity bit sets odd number of 1 bits.
ParityEvenParity bit sets even number of 1 bits.
Trait Implementations
impl Debug for Parity[src]
impl Copy for Parity[src]
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 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) -> bool1.0.0
This method tests for !=.