Skip to main content

Information

Type Alias Information 

Source
pub type Information = Quantity<dyn Dimension<T = Z0, N = Z0, M = Z0, Th = Z0, J = Z0, I = Z0, L = Z0, Kind = dyn InformationKind>, dyn Units<u64, luminous_intensity = candela, amount_of_substance = mole, mass = kilogram, time = second, electric_current = ampere, length = meter, thermodynamic_temperature = kelvin>, u64>;
Expand description

Quantity type alias using the default base units.

Aliased Type§

#[repr(transparent)]
pub struct Information { pub dimension: PhantomData<dyn Dimension<T = Z0, N = Z0, M = Z0, Th = Z0, J = Z0, I = Z0, L = Z0, Kind = dyn InformationKind>>, pub units: PhantomData<dyn Units<u64, luminous_intensity = candela, amount_of_substance = mole, mass = kilogram, time = second, electric_current = ampere, length = meter, thermodynamic_temperature = kelvin>>, pub value: u64, }

Fields§

§dimension: PhantomData<dyn Dimension<T = Z0, N = Z0, M = Z0, Th = Z0, J = Z0, I = Z0, L = Z0, Kind = dyn InformationKind>>

Quantity dimension. See Dimension.

§units: PhantomData<dyn Units<u64, luminous_intensity = candela, amount_of_substance = mole, mass = kilogram, time = second, electric_current = ampere, length = meter, thermodynamic_temperature = kelvin>>

Quantity base units. See Units.

§value: u64

Quantity value stored in the base units for the quantity.