pub unsafe trait CfgInterruptLine: CfgBase<System: KernelInterruptLine> {
    // Required method
    fn interrupt_line_define<Properties: Bag>(
        &mut self,
        descriptor: InterruptLineDescriptor<Self::System>,
        properties: Properties
    );
}
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§

source

fn interrupt_line_define<Properties: Bag>( &mut self, descriptor: InterruptLineDescriptor<Self::System>, properties: Properties )

Implementors§