Enum Tps
#[repr(u8)]pub enum Tps {
Stopped = 0,
RunningFetching = 1,
RunningWaiting = 2,
RunningReading = 3,
_RESERVED_4 = 4,
_RESERVED_5 = 5,
Suspended = 6,
Running = 7,
}Variants§
Stopped = 0
Stopped, Reset or Stop Transmit command issued
RunningFetching = 1
Running, fetching transmit transfer descriptor
RunningWaiting = 2
Running, waiting for status
RunningReading = 3
Running, reading data from host memory buffer
_RESERVED_4 = 4
_RESERVED_5 = 5
Suspended = 6
Suspended, transmit descriptor unavailable or transmit buffer underflow
Running = 7
Running, closing transmit descriptor
Implementations§
Trait Implementations§
impl Copy for Tps
impl Eq for Tps
§impl Ord for Tps
impl Ord for Tps
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
§impl PartialOrd for Tps
impl PartialOrd for Tps
impl StructuralPartialEq for Tps
Auto Trait Implementations§
impl Freeze for Tps
impl RefUnwindSafe for Tps
impl Send for Tps
impl Sync for Tps
impl Unpin for Tps
impl UnsafeUnpin for Tps
impl UnwindSafe for Tps
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