| 24 | } |
| 25 | #[derive(PartialEq, Debug)] |
| 26 | pub enum Event { |
| 27 | KeyPress(Key), |
| 28 | KeyRelease(Key), |
| 29 | TimeOut(u16), |
| 30 | } |
| 31 | #[derive(PartialEq, Debug, Clone, Copy)] |
| 32 | pub enum EventStatus { |
| 33 | Unhandled, |
nothing calls this directly
no outgoing calls
no test coverage detected