#[repr(C, packed(1))]pub struct _LEAP_POINT_MAPPING {
pub frame_id: i64,
pub timestamp: i64,
pub nPoints: u32,
pub pPoints: *mut LEAP_VECTOR,
pub pIDs: *mut u32,
}Fields§
§frame_id: i64The ID of the frame corresponding to the source of the currently tracked points. @since 4.0.0
timestamp: i64The timestamp of the frame, in microseconds, referenced against LeapGetNow(). @since 4.0.0
nPoints: u32The number of points being tracked. @since 4.0.0
pPoints: *mut LEAP_VECTORThe 3D points being mapped. @since 4.0.0
pIDs: *mut u32The IDs of the 3D points being mapped. @since 4.0.0
Trait Implementations§
Source§impl Clone for _LEAP_POINT_MAPPING
impl Clone for _LEAP_POINT_MAPPING
Source§fn clone(&self) -> _LEAP_POINT_MAPPING
fn clone(&self) -> _LEAP_POINT_MAPPING
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 _LEAP_POINT_MAPPING
impl Debug for _LEAP_POINT_MAPPING
impl Copy for _LEAP_POINT_MAPPING
Auto Trait Implementations§
impl Freeze for _LEAP_POINT_MAPPING
impl RefUnwindSafe for _LEAP_POINT_MAPPING
impl !Send for _LEAP_POINT_MAPPING
impl !Sync for _LEAP_POINT_MAPPING
impl Unpin for _LEAP_POINT_MAPPING
impl UnwindSafe for _LEAP_POINT_MAPPING
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