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