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§