Struct wezterm_input_types::MouseEvent
source · pub struct MouseEvent {
pub kind: MouseEventKind,
pub coords: Point,
pub screen_coords: ScreenPoint,
pub mouse_buttons: MouseButtons,
pub modifiers: Modifiers,
}
Fields§
§kind: MouseEventKind
§coords: Point
Coordinates of the mouse relative to the top left of the window
screen_coords: ScreenPoint
The mouse position in screen coordinates
modifiers: Modifiers
Trait Implementations§
source§impl Clone for MouseEvent
impl Clone for MouseEvent
source§fn clone(&self) -> MouseEvent
fn clone(&self) -> MouseEvent
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 MouseEvent
impl Debug for MouseEvent
source§impl PartialEq for MouseEvent
impl PartialEq for MouseEvent
source§fn eq(&self, other: &MouseEvent) -> bool
fn eq(&self, other: &MouseEvent) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for MouseEvent
impl StructuralEq for MouseEvent
impl StructuralPartialEq for MouseEvent
Auto Trait Implementations§
impl RefUnwindSafe for MouseEvent
impl Send for MouseEvent
impl Sync for MouseEvent
impl Unpin for MouseEvent
impl UnwindSafe for MouseEvent
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