[][src]Struct k4a_sys_temp::_k4a_version_t

#[repr(C)]pub struct _k4a_version_t {
    pub major: u32,
    pub minor: u32,
    pub iteration: u32,
}

Version information.

\xmlonly k4atypes.h (include k4a/k4a.h) \endxmlonly

Fields

major: u32

< Major version; represents a breaking change.

minor: u32

< Minor version; represents additional features, no regression from lower versions with same major version.

iteration: u32

< Reserved.

Trait Implementations

impl Clone for _k4a_version_t[src]

impl Copy for _k4a_version_t[src]

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