Type Alias Time

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

Quantity type alias using the default base units.

Aliased Type§

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

Fields§

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

Quantity dimension. See Dimension.

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

Quantity base units. See Units.

§value: f64

Quantity value stored in the base units for the quantity.