pub type ThermalConductivity<V> = Quantity<dyn Dimension<Th = NInt<UInt<UTerm, B1>>, N = Z0, Kind = dyn Kind, I = Z0, T = NInt<UInt<UInt<UTerm, B1>, B1>>, L = PInt<UInt<UTerm, B1>>, M = PInt<UInt<UTerm, B1>>, J = Z0>, dyn Units<V, mass = kilogram, time = second, electric_current = ampere, length = meter, amount_of_substance = mole, thermodynamic_temperature = kelvin, luminous_intensity = candela>, 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 ThermalConductivity<V> {
    pub dimension: PhantomData<dyn Dimension<Th = NInt<UInt<UTerm, B1>>, N = Z0, Kind = dyn Kind, I = Z0, T = NInt<UInt<UInt<UTerm, B1>, B1>>, L = PInt<UInt<UTerm, B1>>, M = PInt<UInt<UTerm, B1>>, J = Z0>>,
    pub units: PhantomData<dyn Units<V, mass = kilogram, time = second, electric_current = ampere, length = meter, amount_of_substance = mole, thermodynamic_temperature = kelvin, luminous_intensity = candela>>,
    pub value: V,
}

Fields§

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

Quantity dimension. See Dimension.

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

Quantity base units. See Units.

§value: V

Quantity value stored in the base units for the quantity.