Type Alias Frequency

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

Quantity type alias using the default base units.

Aliased Type§

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

Fields§

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

Quantity dimension. See Dimension.

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

Quantity base units. See Units.

§value: u64

Quantity value stored in the base units for the quantity.