#[repr(u8)]pub enum Txdis {
ENABLED = 0,
DISABLED = 1,
}Variants§
ENABLED = 0
Not disabled. USART transmitter is not disabled.
DISABLED = 1
Disabled. USART transmitter is disabled after any character currently being transmitted is complete. This feature can be used to facilitate software flow control.
Implementations§
Trait Implementations§
Source§impl Ord for Txdis
impl Ord for Txdis
Source§impl PartialOrd for Txdis
impl PartialOrd for Txdis
impl Copy for Txdis
impl Eq for Txdis
impl StructuralPartialEq for Txdis
Auto Trait Implementations§
impl Freeze for Txdis
impl RefUnwindSafe for Txdis
impl Send for Txdis
impl Sync for Txdis
impl Unpin for Txdis
impl UnwindSafe for Txdis
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