pub trait Handler {
    type Data: PointerWrapper;

    fn handle_irq(data: <Self::Data as PointerWrapper>::Borrowed<'_>) -> Return;
}
Expand description

An irq handler.

Required Associated Types

The context data associated with and made available to the handler.

Required Methods

Called from interrupt context when the irq happens.

Implementors

This documentation is an old archive. Please see https://rust.docs.kernel.org instead.