Trait Client

Source
pub trait Client {
    // Required method
    fn fired(&self, _: usize);
}

Required Methods§

Source

fn fired(&self, _: usize)

Fires when handle_interrupt is called, returning the channel on which the interrupt occurred.

Implementors§

impl<'a, A: AnalogComparator<'a>> Client for AnalogComparator<'a, A>