ratatui_toolkit/vt100_term/key_binding/methods/
matches.rs1use crate::vt100_term::key_binding::KeyBinding;
4
5impl KeyBinding {
6 pub fn matches(&self, key: &crossterm::event::KeyEvent) -> bool {
8 key.code == self.code && key.modifiers == self.modifiers
9 }
10}