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