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