| 9 | use spin::RwLock; |
| 10 | #[derive(Default)] |
| 11 | pub struct KeyOutCatcher { |
| 12 | keys_registered: Vec<u8>, |
| 13 | pub reports: Vec<Vec<u8>>, |
| 14 | state: KeyboardState, |
| 15 | later: Vec<(u32, Vec<KeyCode>)>, |
| 16 | } |
| 17 | impl KeyOutCatcher { |
| 18 | pub fn new() -> KeyOutCatcher { |
| 19 | KeyOutCatcher { |
nothing calls this directly
no outgoing calls
no test coverage detected