Skip to main content

ReciprocalLength

Type Alias ReciprocalLength 

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

Quantity type alias using the default base units.

Aliased Type§

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

Fields§

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

Quantity dimension. See Dimension.

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

Quantity base units. See Units.

§value: f64

Quantity value stored in the base units for the quantity.