Type Alias blackbox_log::units::si::luminance::Luminance
pub type Luminance<U, V> = Quantity<dyn Dimension<Th = Z0, N = Z0, Kind = dyn Kind, I = Z0, T = Z0, L = NInt<UInt<UInt<UTerm, B1>, B0>>, M = Z0, J = PInt<UInt<UTerm, B1>>>, U, V>;
Expand description
Luminance (base unit candela per square meter, cd · m⁻²).
§Generic Parameters
U
: Base units.V
: Underlying storage type.
Aliased Type§
struct Luminance<U, V> {
pub dimension: PhantomData<dyn Dimension<Th = Z0, N = Z0, Kind = dyn Kind, I = Z0, T = Z0, L = NInt<UInt<UInt<UTerm, B1>, B0>>, M = Z0, J = PInt<UInt<UTerm, B1>>>>,
pub units: PhantomData<U>,
pub value: V,
}
Fields§
§dimension: PhantomData<dyn Dimension<Th = Z0, N = Z0, Kind = dyn Kind, I = Z0, T = Z0, L = NInt<UInt<UInt<UTerm, B1>, B0>>, M = Z0, J = PInt<UInt<UTerm, B1>>>>
Quantity dimension. See Dimension
.
units: PhantomData<U>
Quantity base units. See Units
.
value: V
Quantity value stored in the base units for the quantity.