pub struct MouseWheelEvent {
pub timestamp: u64,
pub window_id: u32,
pub which: u32,
pub x: f32,
pub y: f32,
pub direction: MouseWheelDirection,
pub mouse_x: f32,
pub mouse_y: f32,
}Fields§
§timestamp: u64§window_id: u32§which: u32§x: f32§y: f32§direction: MouseWheelDirection§mouse_x: f32§mouse_y: f32Auto Trait Implementations§
impl Freeze for MouseWheelEvent
impl RefUnwindSafe for MouseWheelEvent
impl Send for MouseWheelEvent
impl Sync for MouseWheelEvent
impl Unpin for MouseWheelEvent
impl UnsafeUnpin for MouseWheelEvent
impl UnwindSafe for MouseWheelEvent
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