Enum xhci::ring::trb::transfer::TransferType[][src]

pub enum TransferType {
    No,
    Out,
    In,
}

Transfer Type.

Variants

No

No Data Stage.

Out

Out Data Stage.

In

In Data Stage.

Trait Implementations

impl Clone for TransferType[src]

impl Copy for TransferType[src]

impl Debug for TransferType[src]

impl Eq for TransferType[src]

impl FromPrimitive for TransferType[src]

impl Hash for TransferType[src]

impl Ord for TransferType[src]

impl PartialEq<TransferType> for TransferType[src]

impl PartialOrd<TransferType> for TransferType[src]

impl StructuralEq for TransferType[src]

impl StructuralPartialEq for TransferType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.