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