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