(&self, key: KeyCode)
| 81 | /// Return `true` only on the frame the key changes from down to up. |
| 82 | #[inline] |
| 83 | pub fn is_key_released(&self, key: KeyCode) -> bool { |
| 84 | self.test(&self.released, key) |
| 85 | } |
| 86 | |
| 87 | /// Push text input received this frame. |
| 88 | #[inline] |
no test coverage detected