pub unsafe trait CfgInterruptLine: CfgBasewhere
    Self::System: KernelInterruptLine,{
    // Required method
    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§

source

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

Implementors§