Acceleration

Type Alias Acceleration 

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

Quantity type alias using the default base units.

Aliased Type§

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

Fields§

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

Quantity dimension. See Dimension.

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

Quantity base units. See Units.

§value: f64

Quantity value stored in the base units for the quantity.