Type Alias uom::si::quantities::Molality

source ·
pub type Molality<V> = Molality<SI<V>, V>;
Expand description

Quantity type alias using the default base units parameterized on the underlying storage type.

§Generic Parameters

  • V: Underlying storage type.

Aliased Type§

struct Molality<V> {
    pub dimension: PhantomData<dyn Dimension<L = Z0, T = Z0, Th = Z0, I = Z0, M = NInt<UInt<UTerm, B1>>, N = PInt<UInt<UTerm, B1>>, J = Z0, Kind = dyn ConstituentConcentrationKind>>,
    pub units: PhantomData<dyn Units<V, time = second, luminous_intensity = candela, electric_current = ampere, thermodynamic_temperature = kelvin, mass = kilogram, amount_of_substance = mole, length = meter>>,
    pub value: V,
}

Fields§

§dimension: PhantomData<dyn Dimension<L = Z0, T = Z0, Th = Z0, I = Z0, M = NInt<UInt<UTerm, B1>>, N = PInt<UInt<UTerm, B1>>, J = Z0, Kind = dyn ConstituentConcentrationKind>>

Quantity dimension. See Dimension.

§units: PhantomData<dyn Units<V, time = second, luminous_intensity = candela, electric_current = ampere, thermodynamic_temperature = kelvin, mass = kilogram, amount_of_substance = mole, length = meter>>

Quantity base units. See Units.

§value: V

Quantity value stored in the base units for the quantity.