Struct mpu9250::MargMeasurements[][src]

pub struct MargMeasurements {
    pub accel: Vector3<f32>,
    pub gyro: Vector3<f32>,
    pub mag: Vector3<f32>,
    pub temp: f32,
}

MARG measurements scaled with respective scales and converted to appropriate units.

Fields

Accelerometer measurements (g)

Gyroscope measurements (rad/s)

Magnetometer measurements (T, teslas)

Temperature sensor measurement (C)

Trait Implementations

impl Copy for MargMeasurements
[src]

impl Clone for MargMeasurements
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for MargMeasurements
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations