Acceleration

Type Alias Acceleration 

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

Quantity type alias using the default base units.

Aliased Type§

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

Fields§

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

Quantity dimension. See Dimension.

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

Quantity base units. See Units.

§value: f64

Quantity value stored in the base units for the quantity.