pub enum WordLength {
Bits8,
Bits9,
}
Variants§
Bits8
When parity is enabled, a word has 7 data bits + 1 parity bit, otherwise 8 data bits.
Bits9
When parity is enabled, a word has 8 data bits + 1 parity bit, otherwise 9 data bits.
Auto Trait Implementations§
impl Freeze for WordLength
impl RefUnwindSafe for WordLength
impl Send for WordLength
impl Sync for WordLength
impl Unpin for WordLength
impl UnwindSafe for WordLength
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