heim_common::units

Type Alias Time

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

Quantity type alias using the default base units.

Aliased Type§

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

Fields§

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

Quantity dimension. See Dimension.

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

Quantity base units. See Units.

§value: f64

Quantity value stored in the base units for the quantity.