pub enum Parity {
None,
Odd,
Even,
}Expand description
The type of parity check for a serial port.
Variants§
None
Do not add a parity bit and do not check for parity.
Odd
Add a bit to ensure odd parity of all characters send over the serial port.
Received characters are also expected to have a parity bit and odd parity. What happens with received characters that have invalid parity is platform and device specific.
Even
Add a bit to ensure even parity of all characters send over the serial port.
Received characters are also expected to have a parity bit and even parity. What happens with received characters that have invalid parity is platform and device specific.
Trait Implementations§
source§impl Ord for Parity
impl Ord for Parity
source§impl PartialEq for Parity
impl PartialEq for Parity
source§impl PartialOrd for Parity
impl PartialOrd for Parity
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for Parity
impl Eq for Parity
impl StructuralEq for Parity
impl StructuralPartialEq for Parity
Auto Trait Implementations§
impl RefUnwindSafe for Parity
impl Send for Parity
impl Sync for Parity
impl Unpin for Parity
impl UnwindSafe for Parity
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more