Type Alias uom::si::quantities::ElectricalConductance

source ·
pub type ElectricalConductance<V> = ElectricalConductance<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 ElectricalConductance<V> {
    pub dimension: PhantomData<dyn Dimension<L = NInt<UInt<UInt<UTerm, B1>, B0>>, T = PInt<UInt<UInt<UTerm, B1>, B1>>, Th = Z0, I = PInt<UInt<UInt<UTerm, B1>, B0>>, M = NInt<UInt<UTerm, B1>>, N = Z0, J = Z0, Kind = dyn Kind>>,
    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 = NInt<UInt<UInt<UTerm, B1>, B0>>, T = PInt<UInt<UInt<UTerm, B1>, B1>>, Th = Z0, I = PInt<UInt<UInt<UTerm, B1>, B0>>, M = NInt<UInt<UTerm, B1>>, N = Z0, J = Z0, Kind = dyn Kind>>

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.