pub enum LowLevelMouseAction {
Move,
ButtonDown(MouseButton),
ButtonUp(MouseButton),
WheelScroll(MouseScrollEvent),
Other(u32),
}Available on crate feature
hooking only.Variants§
Trait Implementations§
Source§impl Clone for LowLevelMouseAction
impl Clone for LowLevelMouseAction
Source§fn clone(&self) -> LowLevelMouseAction
fn clone(&self) -> LowLevelMouseAction
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 LowLevelMouseAction
Source§impl Debug for LowLevelMouseAction
impl Debug for LowLevelMouseAction
impl Eq for LowLevelMouseAction
Source§impl PartialEq for LowLevelMouseAction
impl PartialEq for LowLevelMouseAction
Source§fn eq(&self, other: &LowLevelMouseAction) -> bool
fn eq(&self, other: &LowLevelMouseAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LowLevelMouseAction
Auto Trait Implementations§
impl Freeze for LowLevelMouseAction
impl RefUnwindSafe for LowLevelMouseAction
impl Send for LowLevelMouseAction
impl Sync for LowLevelMouseAction
impl Unpin for LowLevelMouseAction
impl UnsafeUnpin for LowLevelMouseAction
impl UnwindSafe for LowLevelMouseAction
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