Type Alias blackbox_log::units::si::f64::MassPerEnergy
pub type MassPerEnergy = Quantity<dyn Dimension<Th = Z0, N = Z0, Kind = dyn Kind, I = Z0, T = PInt<UInt<UInt<UTerm, B1>, B0>>, L = NInt<UInt<UInt<UTerm, B1>, B0>>, M = Z0, J = Z0>, dyn Units<f64, mass = kilogram, time = second, electric_current = ampere, length = meter, amount_of_substance = mole, thermodynamic_temperature = kelvin, luminous_intensity = candela>, f64>;
Expand description
Quantity
type alias using the default base units.
Aliased Type§
struct MassPerEnergy {
pub dimension: PhantomData<dyn Dimension<Th = Z0, N = Z0, Kind = dyn Kind, I = Z0, T = PInt<UInt<UInt<UTerm, B1>, B0>>, L = NInt<UInt<UInt<UTerm, B1>, B0>>, M = Z0, J = Z0>>,
pub units: PhantomData<dyn Units<f64, mass = kilogram, time = second, electric_current = ampere, length = meter, amount_of_substance = mole, thermodynamic_temperature = kelvin, luminous_intensity = candela>>,
pub value: f64,
}
Fields§
§dimension: PhantomData<dyn Dimension<Th = Z0, N = Z0, Kind = dyn Kind, I = Z0, T = PInt<UInt<UInt<UTerm, B1>, B0>>, L = NInt<UInt<UInt<UTerm, B1>, B0>>, M = Z0, J = Z0>>
Quantity dimension. See Dimension
.
units: PhantomData<dyn Units<f64, 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: f64
Quantity value stored in the base units for the quantity.