pub struct PanePointerDispatch {
pub semantic_event: Option<PaneSemanticInputEvent>,
pub transition: Option<PaneDragResizeTransition>,
pub motion: Option<PaneMotionVector>,
pub inertial_throw: Option<PaneInertialThrow>,
pub projected_position: Option<PanePointerPosition>,
pub capture_command: Option<PanePointerCaptureCommand>,
pub log: PanePointerLogEntry,
}Expand description
Result of one pointer lifecycle dispatch.
Fields§
§semantic_event: Option<PaneSemanticInputEvent>§transition: Option<PaneDragResizeTransition>§motion: Option<PaneMotionVector>§inertial_throw: Option<PaneInertialThrow>§projected_position: Option<PanePointerPosition>§capture_command: Option<PanePointerCaptureCommand>§log: PanePointerLogEntryImplementations§
Source§impl PanePointerDispatch
impl PanePointerDispatch
Sourcepub fn pressure_snap_profile(&self) -> Option<PanePressureSnapProfile>
pub fn pressure_snap_profile(&self) -> Option<PanePressureSnapProfile>
Derive dynamic snap profile for this dispatch from captured motion.
Trait Implementations§
Source§impl Clone for PanePointerDispatch
impl Clone for PanePointerDispatch
Source§fn clone(&self) -> PanePointerDispatch
fn clone(&self) -> PanePointerDispatch
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 PanePointerDispatch
impl Debug for PanePointerDispatch
Source§impl PartialEq for PanePointerDispatch
impl PartialEq for PanePointerDispatch
impl StructuralPartialEq for PanePointerDispatch
Auto Trait Implementations§
impl Freeze for PanePointerDispatch
impl RefUnwindSafe for PanePointerDispatch
impl Send for PanePointerDispatch
impl Sync for PanePointerDispatch
impl Unpin for PanePointerDispatch
impl UnsafeUnpin for PanePointerDispatch
impl UnwindSafe for PanePointerDispatch
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