leaprs 0.2.2

Safe wrapper for the LeapC Ultraleap (Leap Motion) hand tracking device API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use leap_sys::*;
use num_enum::{FromPrimitive, IntoPrimitive};

#[derive(Debug, Clone, Copy, Eq, PartialEq, IntoPrimitive, FromPrimitive)]
#[repr(i32)]
pub enum DroppedFrameType {
    PreprocessingQueue = _eLeapDroppedFrameType_eLeapDroppedFrameType_PreprocessingQueue,
    TrackingQueue = _eLeapDroppedFrameType_eLeapDroppedFrameType_TrackingQueue,
    #[num_enum(default)]
    Other = _eLeapDroppedFrameType_eLeapDroppedFrameType_Other,
}