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