Struct r3_core::kernel::interrupt::StaticInterruptHandler
source · pub struct StaticInterruptHandler<System: KernelInterruptLine>(_);
Expand description
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§
source§impl<System: KernelInterruptLine> StaticInterruptHandler<System>
impl<System: KernelInterruptLine> StaticInterruptHandler<System>
sourcepub const fn define() -> InterruptHandlerDefiner<System>
pub const fn define() -> InterruptHandlerDefiner<System>
Construct a InterruptHandlerDefiner
to define an interrupt handler in
a configuration function.