pub type ThermodynamicTemperature<U, V> = Quantity<dyn Dimension<J = Z0, T = Z0, I = Z0, Kind = dyn TemperatureKind, L = Z0, Th = PInt<UInt<UTerm, B1>>, M = Z0, N = Z0>, U, V>;
Expand description
Thermodynamic temperature (base unit kelvin, K).
§Generic Parameters
U
: Base units.V
: Underlying storage type.
Aliased Type§
struct ThermodynamicTemperature<U, V> {
pub dimension: PhantomData<dyn Dimension<J = Z0, T = Z0, I = Z0, Kind = dyn TemperatureKind, L = Z0, Th = PInt<UInt<UTerm, B1>>, M = Z0, N = Z0>>,
pub units: PhantomData<U>,
pub value: V,
}
Fields§
§dimension: PhantomData<dyn Dimension<J = Z0, T = Z0, I = Z0, Kind = dyn TemperatureKind, L = Z0, Th = PInt<UInt<UTerm, B1>>, M = Z0, N = Z0>>
Quantity dimension. See Dimension
.
units: PhantomData<U>
Quantity base units. See Units
.
value: V
Quantity value stored in the base units for the quantity.