pub trait EventIterator {
    fn next_event(&mut self) -> Result<KeyEvent>;
}
Expand description

A trait to represent a source of KeyEvents.

Required Methods

Get the next event

Implementors