#[repr(u8)]pub enum UsbDirection {
Out = 0,
In = 128,
}
Expand description
Direction of USB traffic. Note that in the USB standard the direction is always indicated from the perspective of the host, which is backward for devices, but the standard directions are used for consistency.
The values of the enum also match the direction bit used in endpoint addresses and control request types.
Variants§
Trait Implementations§
Source§impl Clone for UsbDirection
impl Clone for UsbDirection
Source§fn clone(&self) -> UsbDirection
fn clone(&self) -> UsbDirection
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UsbDirection
impl Debug for UsbDirection
Source§impl From<u8> for UsbDirection
impl From<u8> for UsbDirection
Source§impl PartialEq for UsbDirection
impl PartialEq for UsbDirection
impl Copy for UsbDirection
impl Eq for UsbDirection
impl StructuralPartialEq for UsbDirection
Auto Trait Implementations§
impl Freeze for UsbDirection
impl RefUnwindSafe for UsbDirection
impl Send for UsbDirection
impl Sync for UsbDirection
impl Unpin for UsbDirection
impl UnwindSafe for UsbDirection
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