pub trait Client {
// Required method
fn fired(&self);
}Expand description
Interface for users of synchronous GPIO interrupts. In order
to receive interrupts, the user must implement
this Client interface.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".