pub unsafe trait CfgInterruptLine: CfgBasewhere
    Self::System: KernelInterruptLine,
{ fn interrupt_line_define<Properties>(
        &mut self,
        descriptor: InterruptLineDescriptor<Self::System>,
        properties: Properties
    )
    where
        Properties: Bag
; }
Expand description

A low-level configurator trait providing a method to define an interrupt line in the kernel static configuration process.

Safety

See the module documentation.

Stability

See the module documentation.

Required Methods

Implementors