#[repr(u8)]pub enum Tokenpid {
Show 16 variants
_RESERVED_0 = 0,
EN_OUT_TOKEN = 1,
_RESERVED_2 = 2,
_RESERVED_3 = 3,
_RESERVED_4 = 4,
_RESERVED_5 = 5,
_RESERVED_6 = 6,
_RESERVED_7 = 7,
_RESERVED_8 = 8,
EN_IN_TOKEN = 9,
_RESERVED_a = 10,
_RESERVED_b = 11,
_RESERVED_c = 12,
EN_SETUP_TOKEN = 13,
_RESERVED_e = 14,
_RESERVED_f = 15,
}Variants§
_RESERVED_0 = 0
EN_OUT_TOKEN = 1
OUT token. USBFS performs an OUT (TX) transaction.
_RESERVED_2 = 2
_RESERVED_3 = 3
_RESERVED_4 = 4
_RESERVED_5 = 5
_RESERVED_6 = 6
_RESERVED_7 = 7
_RESERVED_8 = 8
EN_IN_TOKEN = 9
IN token. USBFS performs an IN (RX) transaction.
_RESERVED_a = 10
_RESERVED_b = 11
_RESERVED_c = 12
EN_SETUP_TOKEN = 13
SETUP token. USBFS performs a SETUP (TX) transaction
_RESERVED_e = 14
_RESERVED_f = 15
Implementations§
Trait Implementations§
Source§impl Ord for Tokenpid
impl Ord for Tokenpid
Source§impl PartialOrd for Tokenpid
impl PartialOrd for Tokenpid
impl Copy for Tokenpid
impl Eq for Tokenpid
impl StructuralPartialEq for Tokenpid
Auto Trait Implementations§
impl Freeze for Tokenpid
impl RefUnwindSafe for Tokenpid
impl Send for Tokenpid
impl Sync for Tokenpid
impl Unpin for Tokenpid
impl UnwindSafe for Tokenpid
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