Struct streampager::bindings::Keymap[][src]

pub struct Keymap { /* fields omitted */ }

A collection of key bindings.

Implementations

impl Keymap[src]

pub fn new() -> Self[src]

Create a new, empty, keymap.

pub fn get(&self, modifiers: Modifiers, keycode: KeyCode) -> Option<&Binding>[src]

Get the binding associated with a key combination.

pub fn bind(
    &mut self,
    modifiers: Modifiers,
    keycode: KeyCode,
    binding: impl Into<Option<Binding>>
) -> &mut Self
[src]

Bind (or unbind) a key combination.

pub fn bind_hidden(
    &mut self,
    modifiers: Modifiers,
    keycode: KeyCode,
    binding: impl Into<Option<Binding>>
) -> &mut Self
[src]

Bind (or unbind) a key combination, but exclude it from the help screen.

Trait Implementations

impl Debug for Keymap[src]

impl Default for Keymap[src]

impl Eq for Keymap[src]

impl<'a, I: IntoIterator<Item = &'a ((Modifiers, KeyCode), BindingConfig)>> From<I> for Keymap[src]

impl PartialEq<Keymap> for Keymap[src]

impl StructuralEq for Keymap[src]

impl StructuralPartialEq for Keymap[src]

Auto Trait Implementations

impl !RefUnwindSafe for Keymap

impl Send for Keymap

impl Sync for Keymap

impl Unpin for Keymap

impl !UnwindSafe for Keymap

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,