pub trait FlowHandler {
    type Data: PointerWrapper;

    fn handle_irq_flow(
        data: <Self::Data as PointerWrapper>::Borrowed<'_>,
        desc: &Descriptor
    ); }
Expand description

A high-level irq flow handler.

Required Associated Types

The data associated with the handler.

Required Methods

Implements the irq flow for the given descriptor.

Implementors

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