[][src]Struct leap_sys::_LEAP_IMAGE_PROPERTIES

#[repr(C, packed)]pub struct _LEAP_IMAGE_PROPERTIES {
    pub type_: eLeapImageType,
    pub format: eLeapImageFormat,
    pub bpp: u32,
    pub width: u32,
    pub height: u32,
    pub x_scale: f32,
    pub y_scale: f32,
    pub x_offset: f32,
    pub y_offset: f32,
}

\ingroup Structs Properties of a sensor image. @since 3.0.0

Fields

type_: eLeapImageType

The type of this image. @since 3.0.0

format: eLeapImageFormat

The format of this image. @since 3.0.0

bpp: u32

The number of bytes per image pixel. @since 3.0.0

width: u32

The number of horizontal pixels in the image. @since 3.0.0

height: u32

The number of rows of pixels in the image. @since 3.0.0

x_scale: f32

Reserved for future use. @since 3.0.0

y_scale: f32

Reserved for future use. @since 3.0.0

x_offset: f32

Reserved for future use. @since 3.0.0

y_offset: f32

Reserved for future use. @since 3.0.0

Trait Implementations

impl Clone for _LEAP_IMAGE_PROPERTIES[src]

impl Copy for _LEAP_IMAGE_PROPERTIES[src]

impl Debug for _LEAP_IMAGE_PROPERTIES[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.