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.
pub enum WordLength {
Bits8,
Bits9,
}When parity is enabled, a word has 7 data bits + 1 parity bit, otherwise 8 data bits.
When parity is enabled, a word has 8 data bits + 1 parity bit, otherwise 9 data bits.