pub enum KeySequenceKind {
DoubleEscape,
}Expand description
Recognized key sequence patterns.
Variants§
DoubleEscape
Double Escape (Esc Esc) - typically used for tree view toggle.
Implementations§
Trait Implementations§
Source§impl Clone for KeySequenceKind
impl Clone for KeySequenceKind
Source§fn clone(&self) -> KeySequenceKind
fn clone(&self) -> KeySequenceKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for KeySequenceKind
impl Debug for KeySequenceKind
Source§impl Hash for KeySequenceKind
impl Hash for KeySequenceKind
Source§impl PartialEq for KeySequenceKind
impl PartialEq for KeySequenceKind
impl Copy for KeySequenceKind
impl Eq for KeySequenceKind
impl StructuralPartialEq for KeySequenceKind
Auto Trait Implementations§
impl Freeze for KeySequenceKind
impl RefUnwindSafe for KeySequenceKind
impl Send for KeySequenceKind
impl Sync for KeySequenceKind
impl Unpin for KeySequenceKind
impl UnsafeUnpin for KeySequenceKind
impl UnwindSafe for KeySequenceKind
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