Type Alias ThermodynamicTemperature

Source
pub type ThermodynamicTemperature = Quantity<dyn Dimension<L = Z0, N = Z0, M = Z0, Kind = dyn TemperatureKind, I = Z0, Th = PInt<UInt<UTerm, B1>>, T = Z0, J = Z0>, dyn Units<f32, electric_current = ampere, amount_of_substance = mole, length = meter, thermodynamic_temperature = kelvin, mass = kilogram, time = second, luminous_intensity = candela>, f32>;
Expand description

Quantity type alias using the default base units.

Aliased Type§

#[repr(transparent)]
pub struct ThermodynamicTemperature { pub dimension: PhantomData<dyn Dimension<L = Z0, N = Z0, M = Z0, Kind = dyn TemperatureKind, I = Z0, Th = PInt<UInt<UTerm, B1>>, T = Z0, J = Z0>>, pub units: PhantomData<dyn Units<f32, electric_current = ampere, amount_of_substance = mole, length = meter, thermodynamic_temperature = kelvin, mass = kilogram, time = second, luminous_intensity = candela>>, pub value: f32, }

Fields§

§dimension: PhantomData<dyn Dimension<L = Z0, N = Z0, M = Z0, Kind = dyn TemperatureKind, I = Z0, Th = PInt<UInt<UTerm, B1>>, T = Z0, J = Z0>>

Quantity dimension. See Dimension.

§units: PhantomData<dyn Units<f32, electric_current = ampere, amount_of_substance = mole, length = meter, thermodynamic_temperature = kelvin, mass = kilogram, time = second, luminous_intensity = candela>>

Quantity base units. See Units.

§value: f32

Quantity value stored in the base units for the quantity.