| 37 | |
| 38 | #[derive(Debug, Default)] |
| 39 | pub struct KeyboardState { |
| 40 | pub unicode_mode: UnicodeSendMode, |
| 41 | modifiers_and_enabled_handlers: SmallBitVec, |
| 42 | } |
| 43 | impl KeyboardState { |
| 44 | pub fn new() -> KeyboardState { |
| 45 | KeyboardState { |
nothing calls this directly
no outgoing calls
no test coverage detected