pub enum Parity {
None,
Odd,
Even,
}Expand description
The type of parity check for a serial port.
Available on crate feature
serde only:
This type supports (de)serialization as a string.
Variants§
None
Do not add a parity bit and do not check for parity.
Available on crate feature
serde only:
This variant is (de)serialized as the string "none".
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.
Available on crate feature
serde only:
This variant is (de)serialized as the string "odd".
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.
Available on crate feature
serde only:
This variant is (de)serialized as the string "even".
Implementations§
Trait Implementations§
Source§impl Ord for Parity
impl Ord for Parity
Source§impl PartialOrd for Parity
impl PartialOrd for Parity
impl Copy for Parity
impl Eq for Parity
impl StructuralPartialEq for Parity
Auto Trait Implementations§
impl Freeze for Parity
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