Type Alias uom::si::quantities::SolidAngle

source ·
pub type SolidAngle<V> = SolidAngle<SI<V>, V>;
Expand description

Quantity type alias using the default base units parameterized on the underlying storage type.

§Generic Parameters

  • V: Underlying storage type.

Aliased Type§

struct SolidAngle<V> {
    pub dimension: PhantomData<dyn Dimension<L = Z0, N = Z0, J = Z0, I = Z0, Th = Z0, Kind = dyn SolidAngleKind, M = Z0, T = Z0>>,
    pub units: PhantomData<dyn Units<V, amount_of_substance = mole, electric_current = ampere, thermodynamic_temperature = kelvin, time = second, luminous_intensity = candela, length = meter, mass = kilogram>>,
    pub value: V,
}

Fields§

§dimension: PhantomData<dyn Dimension<L = Z0, N = Z0, J = Z0, I = Z0, Th = Z0, Kind = dyn SolidAngleKind, M = Z0, T = Z0>>

Quantity dimension. See Dimension.

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

Quantity base units. See Units.

§value: V

Quantity value stored in the base units for the quantity.