pub trait Client {
// Required methods
fn fired(&self, pin: usize, identifier: usize);
fn done(&self, value: usize);
}
Expand description
The gpio_async Client interface is used to both receive callbacks when a configuration command finishes and to handle interrupt events from pins with interrupts enabled.