[][src]Struct mpu9250::UnscaledMargMeasurements

pub struct UnscaledMargMeasurements<T> {
    pub accel: T,
    pub gyro: T,
    pub mag: T,
    pub temp: i16,
}

Unscaled MARG measurements (LSB)

Fields

accel: T

Accelerometer measurements (LSB)

gyro: T

Gyroscope measurements (LSB)

mag: T

Magnetometer measurements (LSB)

temp: i16

Temperature sensor measurement (LSB)

Trait Implementations

impl<T: Debug> Debug for UnscaledMargMeasurements<T>[src]

impl<T: Copy> Copy for UnscaledMargMeasurements<T>[src]

impl<T: Clone> Clone for UnscaledMargMeasurements<T>[src]

Auto Trait Implementations

impl<T> Unpin for UnscaledMargMeasurements<T> where
    T: Unpin

impl<T> Send for UnscaledMargMeasurements<T> where
    T: Send

impl<T> Sync for UnscaledMargMeasurements<T> where
    T: Sync

Blanket Implementations

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

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> Into<U> for T where
    U: From<T>, 
[src]

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.

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

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

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