rustty 0.1.12

A terminal UI library
Documentation
1
2
3
4
5
6
7
8
/// An input event.
///
/// An `Event` represents a single event from the underying terminal. At the moment no further
/// processing is done on events and raw escape sequences will also be passed as `Key`s.:wq
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub enum Event {
    Key(char),
}