pub enum TermActionKey {
Esc,
CtrlC,
Tab,
Enter,
Space,
Up,
Down,
Left,
Right,
HalfPageUp,
HalfPageDown,
}Variants§
Trait Implementations§
Source§impl Clone for TermActionKey
impl Clone for TermActionKey
Source§fn clone(&self) -> TermActionKey
fn clone(&self) -> TermActionKey
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 TermActionKey
Source§impl Debug for TermActionKey
impl Debug for TermActionKey
Source§impl<'de> Deserialize<'de> for TermActionKey
impl<'de> Deserialize<'de> for TermActionKey
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for TermActionKey
Source§impl PartialEq for TermActionKey
impl PartialEq for TermActionKey
Source§fn eq(&self, other: &TermActionKey) -> bool
fn eq(&self, other: &TermActionKey) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TermActionKey
impl Serialize for TermActionKey
impl StructuralPartialEq for TermActionKey
Auto Trait Implementations§
impl Freeze for TermActionKey
impl RefUnwindSafe for TermActionKey
impl Send for TermActionKey
impl Sync for TermActionKey
impl Unpin for TermActionKey
impl UnsafeUnpin for TermActionKey
impl UnwindSafe for TermActionKey
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