Type Alias MolarMass
pub type MolarMass<U, V> = Quantity<dyn Dimension<M = PInt<UInt<UTerm, B1>>, J = Z0, I = Z0, L = Z0, Th = Z0, T = Z0, Kind = dyn Kind, N = NInt<UInt<UTerm, B1>>>, U, V>;Expand description
Molar mass (base unit kilogram per mole, kg · mol⁻¹).
§Generic Parameters
U: Base units.V: Underlying storage type.
Aliased Type§
#[repr(transparent)]pub struct MolarMass<U, V> {
pub dimension: PhantomData<dyn Dimension<M = PInt<UInt<UTerm, B1>>, J = Z0, I = Z0, L = Z0, Th = Z0, T = Z0, Kind = dyn Kind, N = NInt<UInt<UTerm, B1>>>>,
pub units: PhantomData<U>,
pub value: V,
}Fields§
§dimension: PhantomData<dyn Dimension<M = PInt<UInt<UTerm, B1>>, J = Z0, I = Z0, L = Z0, Th = Z0, T = Z0, Kind = dyn Kind, N = NInt<UInt<UTerm, B1>>>>Quantity dimension. See [Dimension].
units: PhantomData<U>Quantity base units. See [Units].
value: VQuantity value stored in the base units for the quantity.