pub trait KeyboardInputModifierNode:
Send
+ Sync
+ 'static {
// Required method
fn on_keyboard_input(&self, input: KeyboardInput<'_>);
}Expand description
A node-local keyboard input modifier.
Required Methods§
Sourcefn on_keyboard_input(&self, input: KeyboardInput<'_>)
fn on_keyboard_input(&self, input: KeyboardInput<'_>)
Handles keyboard input for the current node.