#[repr(u8)]pub enum Txbrken {
NORMAL = 0,
CONTINOUS = 1,
}Variants§
NORMAL = 0
Normal operation.
CONTINOUS = 1
Continuous break. Continuous break is sent immediately when this bit is set, and remains until this bit is cleared. A break may be sent without danger of corrupting any currently transmitting character if the transmitter is first disabled (TXDIS in CTL is set) and then waiting for the transmitter to be disabled (TXDISINT in STAT = 1) before writing 1 to TXBRKEN.
Implementations§
Trait Implementations§
Source§impl Ord for Txbrken
impl Ord for Txbrken
Source§impl PartialOrd for Txbrken
impl PartialOrd for Txbrken
impl Copy for Txbrken
impl Eq for Txbrken
impl StructuralPartialEq for Txbrken
Auto Trait Implementations§
impl Freeze for Txbrken
impl RefUnwindSafe for Txbrken
impl Send for Txbrken
impl Sync for Txbrken
impl Unpin for Txbrken
impl UnwindSafe for Txbrken
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