pub struct PointerScrolled {
pub id: PointerId,
pub position: Point,
pub delta: Vector,
pub modifiers: Modifiers,
}
Expand description
A pointer wheel was scrolled.
Fields§
§id: PointerId
The unique id of the pointer.
position: Point
The position of the pointer.
delta: Vector
The delta of the pointer.
modifiers: Modifiers
The modifiers of the pointer.
Trait Implementations§
Source§impl Clone for PointerScrolled
impl Clone for PointerScrolled
Source§fn clone(&self) -> PointerScrolled
fn clone(&self) -> PointerScrolled
Returns a copy 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 PointerScrolled
impl Debug for PointerScrolled
Source§impl Hash for PointerScrolled
impl Hash for PointerScrolled
Source§impl PartialEq for PointerScrolled
impl PartialEq for PointerScrolled
impl StructuralPartialEq for PointerScrolled
Auto Trait Implementations§
impl Freeze for PointerScrolled
impl RefUnwindSafe for PointerScrolled
impl Send for PointerScrolled
impl Sync for PointerScrolled
impl Unpin for PointerScrolled
impl UnwindSafe for PointerScrolled
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