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