pub struct FingerUpEvent {
pub window_id: usize,
pub abs: Vec2,
pub abs_start: Vec2,
pub rel: Vec2,
pub rel_start: Vec2,
pub rect: Rect,
pub digit: usize,
pub is_over: bool,
pub is_touch: bool,
pub modifiers: KeyModifiers,
pub time: f64,
}
Fields§
§window_id: usize
§abs: Vec2
§abs_start: Vec2
§rel: Vec2
§rel_start: Vec2
§rect: Rect
§digit: usize
§is_over: bool
§is_touch: bool
§modifiers: KeyModifiers
§time: f64
Trait Implementations§
Source§impl Clone for FingerUpEvent
impl Clone for FingerUpEvent
Source§fn clone(&self) -> FingerUpEvent
fn clone(&self) -> FingerUpEvent
Returns a duplicate 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 FingerUpEvent
impl Debug for FingerUpEvent
Source§impl Default for FingerUpEvent
impl Default for FingerUpEvent
Source§fn default() -> FingerUpEvent
fn default() -> FingerUpEvent
Returns the “default value” for a type. Read more
Source§impl PartialEq for FingerUpEvent
impl PartialEq for FingerUpEvent
impl StructuralPartialEq for FingerUpEvent
Auto Trait Implementations§
impl Freeze for FingerUpEvent
impl RefUnwindSafe for FingerUpEvent
impl Send for FingerUpEvent
impl Sync for FingerUpEvent
impl Unpin for FingerUpEvent
impl UnwindSafe for FingerUpEvent
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