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