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

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

Device Notification Event TRB

Implementations

impl DeviceNotification[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 DeviceNotification[src]

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

Creates a new Device Notification Event TRB.

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

impl DeviceNotification[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 DeviceNotification[src]

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

Returns the value of the Notification Type field.

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

Returns the value of the Device Notification Data field.

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

Returns the value of the Slot ID field.

Trait Implementations

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

impl Clone for DeviceNotification[src]

impl Copy for DeviceNotification[src]

impl Debug for DeviceNotification[src]

impl Default for DeviceNotification[src]

impl Eq for DeviceNotification[src]

impl From<DeviceNotification> for Allowed[src]

impl Hash for DeviceNotification[src]

impl Ord for DeviceNotification[src]

impl PartialEq<DeviceNotification> for DeviceNotification[src]

impl PartialOrd<DeviceNotification> for DeviceNotification[src]

impl StructuralEq for DeviceNotification[src]

impl StructuralPartialEq for DeviceNotification[src]

impl TryFrom<[u32; 4]> for DeviceNotification[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.