KeyboardInputModifierNode

Trait KeyboardInputModifierNode 

Source
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§

Source

fn on_keyboard_input(&self, input: KeyboardInput<'_>)

Handles keyboard input for the current node.

Implementors§