Struct xhci::registers::runtime::InterrupterManagementRegister[][src]

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

Interrupter Management Register.

Implementations

impl InterrupterManagementRegister[src]

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

Returns the value of the Interrupter Pending bit.

pub fn clear_interrupt_pending(&mut self)[src]

Clears the value of the Interrupt Pending bit.

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

Returns the value of the Interrupt Enable bit.

pub fn set_interrupt_enable(&mut self, b: bool)[src]

Sets the value of the Interrupt Enable bit.

Trait Implementations

impl Clone for InterrupterManagementRegister[src]

impl Copy for InterrupterManagementRegister[src]

impl Debug for InterrupterManagementRegister[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.