pub type ElectricPotential = Quantity<dyn Dimension<I = NInt<UInt<UTerm, B1>>, J = Z0, N = Z0, M = PInt<UInt<UTerm, B1>>, L = PInt<UInt<UInt<UTerm, B1>, B0>>, T = NInt<UInt<UInt<UTerm, B1>, B1>>, Th = Z0, Kind = dyn Kind>, dyn Units<f64, luminous_intensity = candela, amount_of_substance = mole, length = meter, time = second, thermodynamic_temperature = kelvin, electric_current = ampere, mass = kilogram>, f64>;
Expand description

Quantity type alias using the default base units.

Aliased Type§

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

Fields§

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

Quantity dimension. See Dimension.

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

Quantity base units. See Units.

§value: f64

Quantity value stored in the base units for the quantity.