pub trait InputDevice: Send + Sync + Any {
    fn handle_irq(&self);
}

Required Methods

Implementors