pub struct FingerUpEvent {
pub window_id: WindowId,
pub abs: DVec2,
pub capture_time: f64,
pub digit_id: DigitId,
pub device: DigitDevice,
pub tap_count: u32,
pub modifiers: KeyModifiers,
pub time: f64,
pub abs_start: DVec2,
pub rect: Rect,
pub is_over: bool,
pub is_sweep: bool,
}Fields§
§window_id: WindowId§abs: DVec2§capture_time: f64§digit_id: DigitId§device: DigitDevice§tap_count: u32§modifiers: KeyModifiers§time: f64§abs_start: DVec2§rect: Rect§is_over: bool§is_sweep: boolImplementations§
Source§impl FingerUpEvent
impl FingerUpEvent
Trait Implementations§
Source§impl Clone for FingerUpEvent
impl Clone for FingerUpEvent
Source§fn clone(&self) -> FingerUpEvent
fn clone(&self) -> FingerUpEvent
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 moreAuto 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