[][src]Struct mpu9250::DmpFeatures

pub struct DmpFeatures {
    pub raw_gyro: bool,
    pub raw_accel: bool,
    pub tap: bool,
    pub android_orient: bool,
    pub quat6: bool,
    pub quat: bool,
}

Dmp features to enable, default with raw gyro and accel and 6 axes quaternion

Fields

raw_gyro: bool

DMP output raw gyro measurement

raw_accel: bool

DMP output raw accel measurement

tap: bool

DMP output tap motions detection

android_orient: bool

DMP output orientation motions detection

quat6: bool

DMP output quaternion based on accelrometer and gyroscope

quat: bool

DMP output quaternion based on gyroscope only

Trait Implementations

impl Clone for DmpFeatures[src]

impl Copy for DmpFeatures[src]

impl Debug for DmpFeatures[src]

impl Default for DmpFeatures[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.