pub trait ClientWithValue {
    // Required method
    fn fired(&self, value: u32);
}
Expand description

Interfaces for users of GPIO interrupts who handle many interrupts with the same function. The value passed in the callback allows the callback to distinguish which interrupt fired.

Required Methods§

source

fn fired(&self, value: u32)

Implementors§