pub struct MouseMoveEvent {
pub x: f64,
pub y: f64,
}Expand description
A mousemove event.
Fields§
§x: f64The x-coordinate of the mouse pointer in physical pixels.
y: f64The y-coordinate of the mouse pointer in physical pixels.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MouseMoveEvent
impl RefUnwindSafe for MouseMoveEvent
impl Send for MouseMoveEvent
impl Sync for MouseMoveEvent
impl Unpin for MouseMoveEvent
impl UnwindSafe for MouseMoveEvent
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