pub struct WheelEventArgs {
pub scene_x: f32,
pub scene_y: f32,
pub x: f32,
pub y: f32,
pub delta_x: f32,
pub delta_y: f32,
pub delta_mode: u32,
pub modifiers: u32,
pub handled: bool,
}Fields§
§scene_x: f32§scene_y: f32§x: f32§y: f32§delta_x: f32§delta_y: f32§delta_mode: u32§modifiers: u32§handled: boolImplementations§
Trait Implementations§
Source§impl Clone for WheelEventArgs
impl Clone for WheelEventArgs
Source§fn clone(&self) -> WheelEventArgs
fn clone(&self) -> WheelEventArgs
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 moreAuto Trait Implementations§
impl Freeze for WheelEventArgs
impl RefUnwindSafe for WheelEventArgs
impl Send for WheelEventArgs
impl Sync for WheelEventArgs
impl Unpin for WheelEventArgs
impl UnsafeUnpin for WheelEventArgs
impl UnwindSafe for WheelEventArgs
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