Skip to main content

Client

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.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§