heim_common::units

Type Alias Frequency

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

Quantity type alias using the default base units.

Aliased Type§

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

Fields§

§dimension: PhantomData<dyn Dimension<I = Z0, Kind = dyn Kind, N = Z0, T = NInt<UInt<UTerm, B1>>, L = Z0, Th = Z0, M = Z0, J = Z0>>

Quantity dimension. See Dimension.

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

Quantity base units. See Units.

§value: u64

Quantity value stored in the base units for the quantity.