(&self, key: KeyCode)
| 75 | /// Return `true` only on the frame the key changes from up to down. |
| 76 | #[inline] |
| 77 | pub fn is_key_pressed(&self, key: KeyCode) -> bool { |
| 78 | self.test(&self.pressed, key) |
| 79 | } |
| 80 | |
| 81 | /// Return `true` only on the frame the key changes from down to up. |
| 82 | #[inline] |
no test coverage detected