Enum crossterm::event::MouseEventKind
source · pub enum MouseEventKind {
Down(MouseButton),
Up(MouseButton),
Drag(MouseButton),
Moved,
ScrollDown,
ScrollUp,
}
Expand description
A mouse event kind.
Platform-specific Notes
Mouse Buttons
Some platforms/terminals do not report mouse button for the
MouseEventKind::Up
and MouseEventKind::Drag
events. MouseButton::Left
is returned if we don’t know which button was used.
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).
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<MouseEventKind> for MouseEventKind
impl PartialEq<MouseEventKind> 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<MouseEventKind> for MouseEventKind
impl PartialOrd<MouseEventKind> 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 more