heim_disk

Type Alias Information

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

Quantity type alias using the default base units.

Aliased Type§

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

Fields§

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

Quantity dimension. See Dimension.

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

Quantity base units. See Units.

§value: u64

Quantity value stored in the base units for the quantity.