[][src]Struct r3::kernel::InterruptHandler

pub struct InterruptHandler<System>(_);

Represents a registered (second-level) interrupt handler in a system.

There are no operations defined for interrupt handlers, so this type is only used for static configuration.

Implementations

impl<System: Port> InterruptHandler<System>[src]

pub const fn build() -> CfgInterruptHandlerBuilder<System>[src]

Construct a CfgInterruptHandlerBuilder to register an interrupt handler in a configuration function.

Auto Trait Implementations

impl<System> Send for InterruptHandler<System> where
    System: Send

impl<System> Sync for InterruptHandler<System> where
    System: Sync

impl<System> Unpin for InterruptHandler<System> where
    System: Unpin

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.