pub enum DIRECTION_A {
HOST_TO_DEVICE = 0,
DEVICE_TO_HOST = 1,
}
Expand description
Data transfer direction
Value on reset: 0
Variants§
Trait Implementations§
Source§impl Clone for DIRECTION_A
impl Clone for DIRECTION_A
Source§fn clone(&self) -> DIRECTION_A
fn clone(&self) -> DIRECTION_A
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 DIRECTION_A
impl Debug for DIRECTION_A
Source§impl From<DIRECTION_A> for bool
impl From<DIRECTION_A> for bool
Source§fn from(variant: DIRECTION_A) -> Self
fn from(variant: DIRECTION_A) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DIRECTION_A
impl PartialEq for DIRECTION_A
impl Copy for DIRECTION_A
impl StructuralPartialEq for DIRECTION_A
Auto Trait Implementations§
impl Freeze for DIRECTION_A
impl RefUnwindSafe for DIRECTION_A
impl Send for DIRECTION_A
impl Sync for DIRECTION_A
impl Unpin for DIRECTION_A
impl UnwindSafe for DIRECTION_A
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