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 · 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 LowLevelMouseAction
impl Debug for LowLevelMouseAction
Source§impl PartialEq for LowLevelMouseAction
impl PartialEq for LowLevelMouseAction
impl Copy for LowLevelMouseAction
impl Eq for LowLevelMouseAction
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 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