Trait os::drivers::input::InputDevice

source ·
pub trait InputDevice: Send + Sync + Any {
    // Required methods
    fn read_event(&self) -> u64;
    fn handle_irq(&self);
    fn is_empty(&self) -> bool;
}

Required Methods§

source

fn read_event(&self) -> u64

source

fn handle_irq(&self)

source

fn is_empty(&self) -> bool

Implementors§