send a key whenever a time out occurs
| 91 | } |
| 92 | /// send a key whenever a time out occurs |
| 93 | pub struct TimeoutLogger { |
| 94 | keycode: KeyCode, |
| 95 | min_timeout_ms: u16, |
| 96 | } |
| 97 | impl TimeoutLogger { |
| 98 | pub fn new(keycode: KeyCode, min_timeout_ms: u16) -> TimeoutLogger { |
| 99 | TimeoutLogger { |
nothing calls this directly
no outgoing calls
no test coverage detected