#[repr(u8)]pub enum Trcsts {
IDLE = 0,
READ = 1,
WAIT = 2,
FLUSH = 3,
}Variants§
IDLE = 0
Idle state
READ = 1
Read state (transferring data to the MAC transmitter)
WAIT = 2
Waiting for pending Tx Status from the MAC transmitter
FLUSH = 3
Flushing the Tx queue because of the Packet Abort request from the MAC
Implementations§
Trait Implementations§
Source§impl Ord for Trcsts
impl Ord for Trcsts
Source§impl PartialOrd for Trcsts
impl PartialOrd for Trcsts
impl Copy for Trcsts
impl Eq for Trcsts
impl StructuralPartialEq for Trcsts
Auto Trait Implementations§
impl Freeze for Trcsts
impl RefUnwindSafe for Trcsts
impl Send for Trcsts
impl Sync for Trcsts
impl Unpin for Trcsts
impl UnwindSafe for Trcsts
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