[][src]Struct leap_sys::_LEAP_POINT_MAPPING

#[repr(C, packed)]pub struct _LEAP_POINT_MAPPING {
    pub frame_id: i64,
    pub timestamp: i64,
    pub nPoints: u32,
    pub pPoints: *mut LEAP_VECTOR,
    pub pIDs: *mut u32,
}

\ingroup Structs A notification that a device's point mapping has changed. It contains the entire set of points being mapped. @since 4.0.0

Fields

frame_id: i64

The ID of the frame corresponding to the source of the currently tracked points. @since 4.0.0

timestamp: i64

The timestamp of the frame, in microseconds, referenced against LeapGetNow(). @since 4.0.0

nPoints: u32

The number of points being tracked. @since 4.0.0

pPoints: *mut LEAP_VECTOR

The 3D points being mapped. @since 4.0.0

pIDs: *mut u32

The IDs of the 3D points being mapped. @since 4.0.0

Trait Implementations

impl Clone for _LEAP_POINT_MAPPING[src]

impl Copy for _LEAP_POINT_MAPPING[src]

impl Debug for _LEAP_POINT_MAPPING[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.