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