pub type Temperature = ThermodynamicTemperature;Expand description
Type for temperature measurements
Aliased Type§
#[repr(transparent)]pub struct Temperature {
pub dimension: PhantomData<dyn Dimension<Kind = dyn TemperatureKind, L = Z0, M = Z0, N = Z0, T = Z0, J = Z0, Th = PInt<UInt<UTerm, B1>>, I = Z0>>,
pub units: PhantomData<dyn Units<f32, time = second, amount_of_substance = mole, mass = kilogram, electric_current = ampere, length = meter, thermodynamic_temperature = kelvin, luminous_intensity = candela>>,
pub value: f32,
}Fields§
§dimension: PhantomData<dyn Dimension<Kind = dyn TemperatureKind, L = Z0, M = Z0, N = Z0, T = Z0, J = Z0, Th = PInt<UInt<UTerm, B1>>, I = Z0>>Quantity dimension. See [Dimension].
units: PhantomData<dyn Units<f32, time = second, amount_of_substance = mole, mass = kilogram, electric_current = ampere, length = meter, thermodynamic_temperature = kelvin, luminous_intensity = candela>>Quantity base units. See [Units].
value: f32Quantity value stored in the base units for the quantity.