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