pub struct MouseMotionEvent {
pub timestamp: u64,
pub window_id: u32,
pub which: u32,
pub mousestate: MouseState,
pub x: f32,
pub y: f32,
pub xrel: f32,
pub yrel: f32,
}Fields§
§timestamp: u64§window_id: u32§which: u32§mousestate: MouseState§x: f32§y: f32§xrel: f32§yrel: f32Auto Trait Implementations§
impl Freeze for MouseMotionEvent
impl RefUnwindSafe for MouseMotionEvent
impl Send for MouseMotionEvent
impl Sync for MouseMotionEvent
impl Unpin for MouseMotionEvent
impl UnsafeUnpin for MouseMotionEvent
impl UnwindSafe for MouseMotionEvent
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