Enum crossterm::event::MouseEventKind
source · pub enum MouseEventKind {
Down(MouseButton),
Up(MouseButton),
Drag(MouseButton),
Moved,
ScrollDown,
ScrollUp,
ScrollLeft,
ScrollRight,
}
Expand description
Variants§
Down(MouseButton)
Pressed mouse button. Contains the button that was pressed.
Up(MouseButton)
Released mouse button. Contains the button that was released.
Drag(MouseButton)
Moved the mouse cursor while pressing the contained mouse button.
Moved
Moved the mouse cursor while not pressing a mouse button.
ScrollDown
Scrolled mouse wheel downwards (towards the user).
ScrollUp
Scrolled mouse wheel upwards (away from the user).
ScrollLeft
Scrolled mouse wheel left (mostly on a laptop touchpad).
ScrollRight
Scrolled mouse wheel right (mostly on a laptop touchpad).
Trait Implementations§
source§impl Clone for MouseEventKind
impl Clone for MouseEventKind
source§fn clone(&self) -> MouseEventKind
fn clone(&self) -> MouseEventKind
Returns a copy 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 MouseEventKind
impl Debug for MouseEventKind
source§impl Hash for MouseEventKind
impl Hash for MouseEventKind
source§impl PartialEq for MouseEventKind
impl PartialEq for MouseEventKind
source§fn eq(&self, other: &MouseEventKind) -> bool
fn eq(&self, other: &MouseEventKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for MouseEventKind
impl PartialOrd for MouseEventKind
source§fn partial_cmp(&self, other: &MouseEventKind) -> Option<Ordering>
fn partial_cmp(&self, other: &MouseEventKind) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for MouseEventKind
impl Eq for MouseEventKind
impl StructuralPartialEq for MouseEventKind
Auto Trait Implementations§
impl Freeze for MouseEventKind
impl RefUnwindSafe for MouseEventKind
impl Send for MouseEventKind
impl Sync for MouseEventKind
impl Unpin for MouseEventKind
impl UnwindSafe for MouseEventKind
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