[][src]Struct tinkerforge::imu_v3_bricklet::AllData

pub struct AllData {
    pub acceleration: [i16; 3],
    pub magnetic_field: [i16; 3],
    pub angular_velocity: [i16; 3],
    pub euler_angle: [i16; 3],
    pub quaternion: [i16; 4],
    pub linear_acceleration: [i16; 3],
    pub gravity_vector: [i16; 3],
    pub temperature: i8,
    pub calibration_status: u8,
}

Fields

acceleration: [i16; 3]magnetic_field: [i16; 3]angular_velocity: [i16; 3]euler_angle: [i16; 3]quaternion: [i16; 4]linear_acceleration: [i16; 3]gravity_vector: [i16; 3]temperature: i8calibration_status: u8

Trait Implementations

impl Clone for AllData[src]

impl Copy for AllData[src]

impl Debug for AllData[src]

impl Default for AllData[src]

impl Eq for AllData[src]

impl FromByteSlice for AllData[src]

impl Hash for AllData[src]

impl PartialEq<AllData> for AllData[src]

impl StructuralEq for AllData[src]

impl StructuralPartialEq for AllData[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> Same<T> for T

type Output = T

Should always be Self

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.