| 88 | |
| 89 | #[derive(Debug)] |
| 90 | pub struct TapDanceLogger { |
| 91 | pub other_key_taps: u16, |
| 92 | pub timeout_taps: u16, |
| 93 | } |
| 94 | impl TapDanceLogger { |
| 95 | fn new() -> TapDanceLogger { |
| 96 | TapDanceLogger{other_key_taps: 0, timeout_taps: 0} |
nothing calls this directly
no outgoing calls
no test coverage detected