pub struct LongPressEventArgs {
pub scene_x: f32,
pub scene_y: f32,
pub pointer_id: i32,
pub pointer_type: PointerType,
pub modifiers: u32,
pub duration_ms: i32,
pub x: f32,
pub y: f32,
pub handled: bool,
}Fields§
§scene_x: f32§scene_y: f32§pointer_id: i32§pointer_type: PointerType§modifiers: u32§duration_ms: i32§x: f32§y: f32§handled: boolImplementations§
Trait Implementations§
Source§impl Clone for LongPressEventArgs
impl Clone for LongPressEventArgs
Source§fn clone(&self) -> LongPressEventArgs
fn clone(&self) -> LongPressEventArgs
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LongPressEventArgs
impl RefUnwindSafe for LongPressEventArgs
impl Send for LongPressEventArgs
impl Sync for LongPressEventArgs
impl Unpin for LongPressEventArgs
impl UnsafeUnpin for LongPressEventArgs
impl UnwindSafe for LongPressEventArgs
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