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

A custom keybindings compatible struct.

Required Methods

Create a new instance from the configuration keybindings.

Implementors