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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for KeySequenceKind
Source§impl Debug for KeySequenceKind
impl Debug for KeySequenceKind
impl Eq for KeySequenceKind
Source§impl Hash for KeySequenceKind
impl Hash for KeySequenceKind
Source§impl PartialEq for KeySequenceKind
impl PartialEq for KeySequenceKind
Source§fn eq(&self, other: &KeySequenceKind) -> bool
fn eq(&self, other: &KeySequenceKind) -> bool
Tests for
self and other values to be equal, and is used by ==.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