pub type ThermodynamicTemperature = Quantity<dyn Dimension<L = Z0, Th = PInt<UInt<UTerm, B1>>, J = Z0, M = Z0, N = Z0, I = Z0, T = Z0, Kind = dyn TemperatureKind>, dyn Units<f32, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, mass = kilogram, thermodynamic_temperature = kelvin, length = meter>, 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, Th = PInt<UInt<UTerm, B1>>, J = Z0, M = Z0, N = Z0, I = Z0, T = Z0, Kind = dyn TemperatureKind>>,
pub units: PhantomData<dyn Units<f32, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, mass = kilogram, thermodynamic_temperature = kelvin, length = meter>>,
pub value: f32,
}
Fields§
§dimension: PhantomData<dyn Dimension<L = Z0, Th = PInt<UInt<UTerm, B1>>, J = Z0, M = Z0, N = Z0, I = Z0, T = Z0, Kind = dyn TemperatureKind>>
Quantity dimension. See Dimension
.
units: PhantomData<dyn Units<f32, electric_current = ampere, luminous_intensity = candela, amount_of_substance = mole, time = second, mass = kilogram, thermodynamic_temperature = kelvin, length = meter>>
Quantity base units. See Units
.
value: f32
Quantity value stored in the base units for the quantity.