#[repr(u8)]pub enum Tstop {
STOP_DISABLE = 0,
ENABLE_TMRCMP = 1,
ENABLE_TMRDISABLE = 2,
ENABLE_TMR_CMP_DIS = 3,
}Variants§
STOP_DISABLE = 0
Stop bit disabled.
ENABLE_TMRCMP = 1
Stop bit is enabled on timer compare.
ENABLE_TMRDISABLE = 2
Stop bit is enabled on timer disable.
ENABLE_TMR_CMP_DIS = 3
Stop bit is enabled on timer compare and timer disable.
Implementations§
Trait Implementations§
Source§impl Ord for Tstop
impl Ord for Tstop
Source§impl PartialOrd for Tstop
impl PartialOrd for Tstop
impl Copy for Tstop
impl Eq for Tstop
impl StructuralPartialEq for Tstop
Auto Trait Implementations§
impl Freeze for Tstop
impl RefUnwindSafe for Tstop
impl Send for Tstop
impl Sync for Tstop
impl Unpin for Tstop
impl UnwindSafe for Tstop
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