Trait 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§