pub enum Keybinding {
Shift(&'static str),
Super(&'static str),
Alt(&'static str),
Ctrl(&'static str),
Just(&'static str),
}Variants§
Trait Implementations§
Source§impl Debug for Keybinding
impl Debug for Keybinding
impl Eq for Keybinding
Source§impl PartialEq for Keybinding
impl PartialEq for Keybinding
Source§fn eq(&self, other: &Keybinding) -> bool
fn eq(&self, other: &Keybinding) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for Keybinding
Auto Trait Implementations§
impl Freeze for Keybinding
impl RefUnwindSafe for Keybinding
impl Send for Keybinding
impl Sync for Keybinding
impl Unpin for Keybinding
impl UnsafeUnpin for Keybinding
impl UnwindSafe for Keybinding
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more