pub trait CustomKeybinding {
    // Required method
    fn new(key_bindings: &KeyBindings) -> Self;
}
Expand description

A custom keybindings compatible struct.

Required Methods§

source

fn new(key_bindings: &KeyBindings) -> Self

Create a new instance from the configuration keybindings.

Implementors§