pub struct ShotProjectionResolution {
pub touch_index: usize,
pub is_shot: bool,
}Expand description
Outcome of a closed shot-projection window. touch_index addresses the
touch event to upgrade to a shot when is_shot is true.
Fields§
§touch_index: usize§is_shot: boolTrait Implementations§
Source§impl Clone for ShotProjectionResolution
impl Clone for ShotProjectionResolution
impl Copy for ShotProjectionResolution
Source§impl Debug for ShotProjectionResolution
impl Debug for ShotProjectionResolution
impl Eq for ShotProjectionResolution
Source§impl PartialEq for ShotProjectionResolution
impl PartialEq for ShotProjectionResolution
impl StructuralPartialEq for ShotProjectionResolution
Auto Trait Implementations§
impl Freeze for ShotProjectionResolution
impl RefUnwindSafe for ShotProjectionResolution
impl Send for ShotProjectionResolution
impl Sync for ShotProjectionResolution
impl Unpin for ShotProjectionResolution
impl UnsafeUnpin for ShotProjectionResolution
impl UnwindSafe for ShotProjectionResolution
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