#[repr(u8)]pub enum STAT_TXR {
Disabled = 0,
Stall = 1,
Nak = 2,
Valid = 3,
}
Expand description
Status bits, for transmission transfers
Value on reset: 0
Variants§
Disabled = 0
0: all transmission requests addressed to this endpoint are ignored
Stall = 1
1: the endpoint is stalled and all transmission requests result in a STALL handshake
Nak = 2
2: the endpoint is naked and all transmission requests result in a NAK handshake
Valid = 3
3: this endpoint is enabled for transmission
Trait Implementations§
impl Copy for STAT_TXR
impl Eq for STAT_TXR
impl IsEnum for STAT_TXR
impl StructuralPartialEq for STAT_TXR
Auto Trait Implementations§
impl Freeze for STAT_TXR
impl RefUnwindSafe for STAT_TXR
impl Send for STAT_TXR
impl Sync for STAT_TXR
impl Unpin for STAT_TXR
impl UnwindSafe for STAT_TXR
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