pub type SpecificPower<V> = SpecificPower<SI<V>, V>;Expand description
Aliased Type§
struct SpecificPower<V> {
pub dimension: PhantomData<dyn Dimension<M = Z0, Kind = dyn Kind, I = Z0, J = Z0, T = NInt<UInt<UInt<UTerm, B1>, B1>>, Th = Z0, L = PInt<UInt<UInt<UTerm, B1>, B0>>, N = Z0>>,
pub units: PhantomData<dyn Units<V, electric_current = ampere, time = second, thermodynamic_temperature = kelvin, luminous_intensity = candela, amount_of_substance = mole, mass = kilogram, length = meter>>,
pub value: V,
}Fields§
§dimension: PhantomData<dyn Dimension<M = Z0, Kind = dyn Kind, I = Z0, J = Z0, T = NInt<UInt<UInt<UTerm, B1>, B1>>, Th = Z0, L = PInt<UInt<UInt<UTerm, B1>, B0>>, N = Z0>>Quantity dimension. See Dimension.
units: PhantomData<dyn Units<V, electric_current = ampere, time = second, thermodynamic_temperature = kelvin, luminous_intensity = candela, amount_of_substance = mole, mass = kilogram, length = meter>>Quantity base units. See Units.
value: VQuantity value stored in the base units for the quantity.