pub enum PaneTerminalLifecyclePhase {
MouseDown,
MouseDrag,
MouseMove,
MouseUp,
MouseScroll,
KeyResize,
KeyCancel,
FocusLoss,
ResizeInterrupt,
Other,
}Expand description
Lifecycle phase observed while translating a terminal event.
Variants§
MouseDown
MouseDrag
MouseMove
MouseUp
MouseScroll
KeyResize
KeyCancel
FocusLoss
ResizeInterrupt
Other
Trait Implementations§
Source§impl Clone for PaneTerminalLifecyclePhase
impl Clone for PaneTerminalLifecyclePhase
Source§fn clone(&self) -> PaneTerminalLifecyclePhase
fn clone(&self) -> PaneTerminalLifecyclePhase
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 PaneTerminalLifecyclePhase
impl Debug for PaneTerminalLifecyclePhase
impl Copy for PaneTerminalLifecyclePhase
impl Eq for PaneTerminalLifecyclePhase
impl StructuralPartialEq for PaneTerminalLifecyclePhase
Auto Trait Implementations§
impl Freeze for PaneTerminalLifecyclePhase
impl RefUnwindSafe for PaneTerminalLifecyclePhase
impl Send for PaneTerminalLifecyclePhase
impl Sync for PaneTerminalLifecyclePhase
impl Unpin for PaneTerminalLifecyclePhase
impl UnwindSafe for PaneTerminalLifecyclePhase
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.