pub type Time = Time<U<f64>, f64>;Expand description
Quantity type alias using the default base units.
Aliased Type§
#[repr(transparent)]pub struct Time {
pub dimension: PhantomData<dyn Dimension<Kind = dyn Kind, M = Z0, T = PInt<UInt<UTerm, B1>>, C = Z0>>,
pub units: PhantomData<dyn Units<f64, charge = e, time = s, mass = dalton>>,
pub value: f64,
}Fields§
§dimension: PhantomData<dyn Dimension<Kind = dyn Kind, M = Z0, T = PInt<UInt<UTerm, B1>>, C = Z0>>Quantity dimension. See Dimension.
units: PhantomData<dyn Units<f64, charge = e, time = s, mass = dalton>>Quantity base units. See Units.
value: f64Quantity value stored in the base units for the quantity.