Trait kernel::hil::eic::Client

source ·
pub trait Client {
    // Required method
    fn fired(&self);
}
Expand description

Interface for users of EIC. In order to execute interrupts, the user must implement this Client interface.

Required Methods§

source

fn fired(&self)

Called when an interrupt occurs.

Implementors§