pub type Time = Quantity<dyn Dimension<J = Z0, Kind = dyn Kind, T = PInt<UInt<UTerm, B1>>, I = Z0, Th = Z0, L = Z0, N = Z0, M = Z0>, dyn Units<f64, time = second, amount_of_substance = mole, electric_current = ampere, thermodynamic_temperature = kelvin, mass = kilogram, length = meter, luminous_intensity = candela>, f64>;
Expand description
Quantity
type alias using the default base units.
Aliased Type§
struct Time {
pub dimension: PhantomData<dyn Dimension<J = Z0, Kind = dyn Kind, T = PInt<UInt<UTerm, B1>>, I = Z0, Th = Z0, L = Z0, N = Z0, M = Z0>>,
pub units: PhantomData<dyn Units<f64, time = second, amount_of_substance = mole, electric_current = ampere, thermodynamic_temperature = kelvin, mass = kilogram, length = meter, luminous_intensity = candela>>,
pub value: f64,
}
Fields§
§dimension: PhantomData<dyn Dimension<J = Z0, Kind = dyn Kind, T = PInt<UInt<UTerm, B1>>, I = Z0, Th = Z0, L = Z0, N = Z0, M = Z0>>
Quantity dimension. See Dimension
.
units: PhantomData<dyn Units<f64, time = second, amount_of_substance = mole, electric_current = ampere, thermodynamic_temperature = kelvin, mass = kilogram, length = meter, luminous_intensity = candela>>
Quantity base units. See Units
.
value: f64
Quantity value stored in the base units for the quantity.