pub type ElectricalResistance = ElectricalResistance<SI<V>, V>;
Expand description

Quantity type alias using the default base units.

Aliased Type§

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

Fields§

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

Quantity dimension. See Dimension.

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

Quantity base units. See Units.

§value: Ratio<BigInt>

Quantity value stored in the base units for the quantity.