#[repr(u8)]pub enum Sstart {
VALUE00 = 0,
VALUE01 = 1,
VALUE10 = 2,
VALUE11 = 3,
}Variants§
VALUE00 = 0
Start bit disabled for transmitter/receiver/match store, transmitter loads data on enable
VALUE01 = 1
Start bit disabled for transmitter/receiver/match store, transmitter loads data on first shift
VALUE10 = 2
Transmitter outputs start bit value 0 before loading data on first shift, receiver/match store sets error flag if start bit is not 0
VALUE11 = 3
Transmitter outputs start bit value 1 before loading data on first shift, receiver/match store sets error flag if start bit is not 1
Implementations§
Trait Implementations§
Source§impl Ord for Sstart
impl Ord for Sstart
Source§impl PartialOrd for Sstart
impl PartialOrd for Sstart
impl Copy for Sstart
impl Eq for Sstart
impl StructuralPartialEq for Sstart
Auto Trait Implementations§
impl Freeze for Sstart
impl RefUnwindSafe for Sstart
impl Send for Sstart
impl Sync for Sstart
impl Unpin for Sstart
impl UnwindSafe for Sstart
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