Struct xhci::ring::trb::event::CommandCompletion[][src]

#[repr(transparent)]pub struct CommandCompletion(_);

Command Completion Event TRB

Implementations

impl CommandCompletion[src]

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

Returns the wrapped array.

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

Returns the value of the Cycle Bit.

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

Sets the value of the Cycle Bit.

impl CommandCompletion[src]

#[must_use]pub fn new() -> Self[src]

Creates a new Command Completion Event TRB.

This method sets the sets the value of the TRB Type field properly. All the other fieldds are set to 0.

impl CommandCompletion[src]

pub fn completion_code(&self) -> Result<CompletionCode, u8>[src]

Returns the Completion Code.

Errors

This method may return an Err value with the Completion Code that is either reserved or not implemented by this crate.

impl CommandCompletion[src]

#[must_use]pub fn command_trb_pointer(&self) -> u64[src]

Returns the value of the Command TRB Pointer field.

#[must_use]pub fn command_completion_parameter(&self) -> u32[src]

Returns the value of the Command Completion Parameter field.

#[must_use]pub fn vf_id(&self) -> u8[src]

Returns the value of the VF (Virtual Function) ID field.

#[must_use]pub fn slot_id(&self) -> u8[src]

Returns the value of the Slot ID field.

Trait Implementations

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

impl Clone for CommandCompletion[src]

impl Copy for CommandCompletion[src]

impl Debug for CommandCompletion[src]

impl Default for CommandCompletion[src]

impl Eq for CommandCompletion[src]

impl From<CommandCompletion> for Allowed[src]

impl Hash for CommandCompletion[src]

impl Ord for CommandCompletion[src]

impl PartialEq<CommandCompletion> for CommandCompletion[src]

impl PartialOrd<CommandCompletion> for CommandCompletion[src]

impl StructuralEq for CommandCompletion[src]

impl StructuralPartialEq for CommandCompletion[src]

impl TryFrom<[u32; 4]> for CommandCompletion[src]

type Error = [u32; 4]

The type returned in the event of a conversion error.

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.