pub trait CharDevice {
    fn read(&self) -> u8;
fn write(&self, ch: u8);
fn handle_irq(&self); }

Required methods

Implementors