#[repr(u8)]pub enum TransferAct {
Tran = 4,
Link = 6,
}Variants§
Tran = 4
The transfer descriptor points to a data region to read/write to.
Link = 6
The transfer descriptor points to a list of transfer descriptors.
Implementations§
Trait Implementations§
Source§impl Clone for TransferAct
impl Clone for TransferAct
Source§fn clone(&self) -> TransferAct
fn clone(&self) -> TransferAct
Returns a duplicate 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 TransferAct
impl Debug for TransferAct
Source§impl From<TransferAct> for u8
impl From<TransferAct> for u8
Source§fn from(value: TransferAct) -> Self
fn from(value: TransferAct) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TransferAct
impl PartialEq for TransferAct
Source§impl TryFrom<u8> for TransferAct
impl TryFrom<u8> for TransferAct
impl Copy for TransferAct
impl Eq for TransferAct
impl StructuralPartialEq for TransferAct
Auto Trait Implementations§
impl Freeze for TransferAct
impl RefUnwindSafe for TransferAct
impl Send for TransferAct
impl Sync for TransferAct
impl Unpin for TransferAct
impl UnsafeUnpin for TransferAct
impl UnwindSafe for TransferAct
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