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

pub enum Allowed {
    Normal(Normal),
    SetupStage(SetupStage),
    DataStage(DataStage),
    StatusStage(StatusStage),
    Isoch(Isoch),
    Link(Link),
    EventData(EventData),
    Noop(Noop),
}

TRBs which are allowed to be pushed to the Transfer Ring.

Variants

Normal(Normal)

Normal TRB.

SetupStage(SetupStage)

Setup Stage TRB.

DataStage(DataStage)

Data Stage TRB.

StatusStage(StatusStage)

Status Stage TRB.

Isoch(Isoch)

Isoch TRB.

Link TRB.

EventData(EventData)

Event Data TRB.

Noop(Noop)

No Op TRB.

Implementations

impl Allowed[src]

pub fn set_cycle_bit(&mut self, b: bool) -> &mut Self[src]

Sets the value of the Cycle Bit.

#[must_use]pub fn cycle_bit(&self) -> bool[src]

Returns the value of the Cycle Bit.

#[must_use]pub fn into_raw(self) -> [u32; 4][src]

Returns the wrapped array.

impl Allowed[src]

pub fn set_interrupt_on_completion(&mut self, ioc: bool)[src]

Sets the value of the Interrupt On Completion field.

#[must_use]pub fn interrupt_on_completion(&self) -> bool[src]

Returns the value of the Interrupt On Completion field.

Trait Implementations

impl AsRef<[u32]> for Allowed[src]

impl Clone for Allowed[src]

impl Copy for Allowed[src]

impl Debug for Allowed[src]

impl Eq for Allowed[src]

impl From<DataStage> for Allowed[src]

impl From<EventData> for Allowed[src]

impl From<Isoch> for Allowed[src]

impl From<Link> for Allowed[src]

impl From<Noop> for Allowed[src]

impl From<Normal> for Allowed[src]

impl From<SetupStage> for Allowed[src]

impl From<StatusStage> for Allowed[src]

impl Hash for Allowed[src]

impl Ord for Allowed[src]

impl PartialEq<Allowed> for Allowed[src]

impl PartialOrd<Allowed> for Allowed[src]

impl StructuralEq for Allowed[src]

impl StructuralPartialEq for Allowed[src]

Auto Trait Implementations

impl Send for Allowed

impl Sync for Allowed

impl Unpin for Allowed

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.