| 380 | } |
| 381 | |
| 382 | pub trait KeyCodeInfo { |
| 383 | fn is_usb_keycode(self) -> bool; |
| 384 | fn is_private_keycode(self) -> bool; |
| 385 | } |
| 386 | |
| 387 | impl KeyCodeInfo for u32 { |
| 388 | fn is_usb_keycode(self) -> bool { |
nothing calls this directly
no outgoing calls
no test coverage detected