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