ImuPayload

Struct ImuPayload 

Source
pub struct ImuPayload {
    pub accel_x: Quantity<dyn Dimension<Th = Z0, L = PInt<UInt<UTerm, B1>>, M = Z0, N = Z0, I = Z0, J = Z0, Kind = dyn Kind, T = NInt<UInt<UInt<UTerm, B1>, B0>>>, dyn Units<f32, length = meter, mass = kilogram, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin>, f32>,
    pub accel_y: Quantity<dyn Dimension<Th = Z0, L = PInt<UInt<UTerm, B1>>, M = Z0, N = Z0, I = Z0, J = Z0, Kind = dyn Kind, T = NInt<UInt<UInt<UTerm, B1>, B0>>>, dyn Units<f32, length = meter, mass = kilogram, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin>, f32>,
    pub accel_z: Quantity<dyn Dimension<Th = Z0, L = PInt<UInt<UTerm, B1>>, M = Z0, N = Z0, I = Z0, J = Z0, Kind = dyn Kind, T = NInt<UInt<UInt<UTerm, B1>, B0>>>, dyn Units<f32, length = meter, mass = kilogram, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin>, f32>,
    pub gyro_x: Quantity<dyn Dimension<Th = Z0, L = Z0, M = Z0, N = Z0, I = Z0, J = Z0, Kind = dyn AngleKind, T = NInt<UInt<UTerm, B1>>>, dyn Units<f32, length = meter, mass = kilogram, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin>, f32>,
    pub gyro_y: Quantity<dyn Dimension<Th = Z0, L = Z0, M = Z0, N = Z0, I = Z0, J = Z0, Kind = dyn AngleKind, T = NInt<UInt<UTerm, B1>>>, dyn Units<f32, length = meter, mass = kilogram, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin>, f32>,
    pub gyro_z: Quantity<dyn Dimension<Th = Z0, L = Z0, M = Z0, N = Z0, I = Z0, J = Z0, Kind = dyn AngleKind, T = NInt<UInt<UTerm, B1>>>, dyn Units<f32, length = meter, mass = kilogram, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin>, f32>,
    pub temperature: Quantity<dyn Dimension<Th = PInt<UInt<UTerm, B1>>, L = Z0, M = Z0, N = Z0, I = Z0, J = Z0, Kind = dyn TemperatureKind, T = Z0>, dyn Units<f32, length = meter, mass = kilogram, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin>, f32>,
}
Expand description

Standardized IMU payload carrying acceleration, angular velocity, and optional magnetometer data.

Fields§

§accel_x: Quantity<dyn Dimension<Th = Z0, L = PInt<UInt<UTerm, B1>>, M = Z0, N = Z0, I = Z0, J = Z0, Kind = dyn Kind, T = NInt<UInt<UInt<UTerm, B1>, B0>>>, dyn Units<f32, length = meter, mass = kilogram, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin>, f32>§accel_y: Quantity<dyn Dimension<Th = Z0, L = PInt<UInt<UTerm, B1>>, M = Z0, N = Z0, I = Z0, J = Z0, Kind = dyn Kind, T = NInt<UInt<UInt<UTerm, B1>, B0>>>, dyn Units<f32, length = meter, mass = kilogram, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin>, f32>§accel_z: Quantity<dyn Dimension<Th = Z0, L = PInt<UInt<UTerm, B1>>, M = Z0, N = Z0, I = Z0, J = Z0, Kind = dyn Kind, T = NInt<UInt<UInt<UTerm, B1>, B0>>>, dyn Units<f32, length = meter, mass = kilogram, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin>, f32>§gyro_x: Quantity<dyn Dimension<Th = Z0, L = Z0, M = Z0, N = Z0, I = Z0, J = Z0, Kind = dyn AngleKind, T = NInt<UInt<UTerm, B1>>>, dyn Units<f32, length = meter, mass = kilogram, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin>, f32>§gyro_y: Quantity<dyn Dimension<Th = Z0, L = Z0, M = Z0, N = Z0, I = Z0, J = Z0, Kind = dyn AngleKind, T = NInt<UInt<UTerm, B1>>>, dyn Units<f32, length = meter, mass = kilogram, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin>, f32>§gyro_z: Quantity<dyn Dimension<Th = Z0, L = Z0, M = Z0, N = Z0, I = Z0, J = Z0, Kind = dyn AngleKind, T = NInt<UInt<UTerm, B1>>>, dyn Units<f32, length = meter, mass = kilogram, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin>, f32>§temperature: Quantity<dyn Dimension<Th = PInt<UInt<UTerm, B1>>, L = Z0, M = Z0, N = Z0, I = Z0, J = Z0, Kind = dyn TemperatureKind, T = Z0>, dyn Units<f32, length = meter, mass = kilogram, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin>, f32>

Implementations§

Source§

impl ImuPayload

Source

pub fn from_raw( accel_mps2: [f32; 3], gyro_rad: [f32; 3], temperature_c: f32, ) -> ImuPayload

Build an IMU payload from plain scalar values.

  • accel_mps2 - acceleration in m/s².
  • gyro_rad - angular velocity in rad/s.
  • temperature_c - temperature in °C.
Source

pub fn from_uom( accel_x: Quantity<dyn Dimension<Th = Z0, L = PInt<UInt<UTerm, B1>>, M = Z0, N = Z0, I = Z0, J = Z0, Kind = dyn Kind, T = NInt<UInt<UInt<UTerm, B1>, B0>>>, dyn Units<f32, length = meter, mass = kilogram, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin>, f32>, accel_y: Quantity<dyn Dimension<Th = Z0, L = PInt<UInt<UTerm, B1>>, M = Z0, N = Z0, I = Z0, J = Z0, Kind = dyn Kind, T = NInt<UInt<UInt<UTerm, B1>, B0>>>, dyn Units<f32, length = meter, mass = kilogram, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin>, f32>, accel_z: Quantity<dyn Dimension<Th = Z0, L = PInt<UInt<UTerm, B1>>, M = Z0, N = Z0, I = Z0, J = Z0, Kind = dyn Kind, T = NInt<UInt<UInt<UTerm, B1>, B0>>>, dyn Units<f32, length = meter, mass = kilogram, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin>, f32>, gyro_x: Quantity<dyn Dimension<Th = Z0, L = Z0, M = Z0, N = Z0, I = Z0, J = Z0, Kind = dyn AngleKind, T = NInt<UInt<UTerm, B1>>>, dyn Units<f32, length = meter, mass = kilogram, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin>, f32>, gyro_y: Quantity<dyn Dimension<Th = Z0, L = Z0, M = Z0, N = Z0, I = Z0, J = Z0, Kind = dyn AngleKind, T = NInt<UInt<UTerm, B1>>>, dyn Units<f32, length = meter, mass = kilogram, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin>, f32>, gyro_z: Quantity<dyn Dimension<Th = Z0, L = Z0, M = Z0, N = Z0, I = Z0, J = Z0, Kind = dyn AngleKind, T = NInt<UInt<UTerm, B1>>>, dyn Units<f32, length = meter, mass = kilogram, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin>, f32>, temperature: Quantity<dyn Dimension<Th = PInt<UInt<UTerm, B1>>, L = Z0, M = Z0, N = Z0, I = Z0, J = Z0, Kind = dyn TemperatureKind, T = Z0>, dyn Units<f32, length = meter, mass = kilogram, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin>, f32>, ) -> ImuPayload

Build an IMU payload from unit-carrying types.

Trait Implementations§

Source§

impl Clone for ImuPayload

Source§

fn clone(&self) -> ImuPayload

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ImuPayload

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Decode<()> for ImuPayload

Source§

fn decode<D>(decoder: &mut D) -> Result<ImuPayload, DecodeError>
where D: Decoder<Context = ()>,

Attempt to decode this type with the given Decode.
Source§

impl Default for ImuPayload

Source§

fn default() -> ImuPayload

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for ImuPayload

Source§

fn deserialize<__D>( __deserializer: __D, ) -> Result<ImuPayload, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Encode for ImuPayload

Source§

fn encode<E>(&self, encoder: &mut E) -> Result<(), EncodeError>
where E: Encoder,

Encode a given type.
Source§

impl PartialEq for ImuPayload

Source§

fn eq(&self, other: &ImuPayload) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for ImuPayload

Source§

fn serialize<__S>( &self, __serializer: __S, ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Copy for ImuPayload

Source§

impl StructuralPartialEq for ImuPayload

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> Serialize for T
where T: Serialize + ?Sized,

Source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>

Source§

fn do_erased_serialize( &self, serializer: &mut dyn Serializer, ) -> Result<(), ErrorImpl>

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> CuMsgPayload for T

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,