pub struct InverseLuminosity<T: NumLike> {
pub per_cd: T,
}Expand description
The inverse of luminosity unit type, defined as inverse candela in SI units
Fields§
§per_cd: TThe value of this Inverse luminosity in inverse candela
Implementations§
Source§impl<T> InverseLuminosity<T>where
T: NumLike,
impl<T> InverseLuminosity<T>where
T: NumLike,
Sourcepub fn unit_name() -> &'static str
pub fn unit_name() -> &'static str
Returns the standard unit name of inverse luminosity: “inverse candela”
Sourcepub fn unit_symbol() -> &'static str
pub fn unit_symbol() -> &'static str
Returns the abbreviated name or symbol of inverse luminosity: “1/cd” for inverse candela
Sourcepub fn from_per_cd(per_cd: T) -> Self
pub fn from_per_cd(per_cd: T) -> Self
Returns a new inverse luminosity value from the given number of inverse candela
§Arguments
per_cd- Any number-like type, representing a quantity of inverse candela
Sourcepub fn to_per_cd(&self) -> T
pub fn to_per_cd(&self) -> T
Returns a copy of this inverse luminosity value in inverse candela
Sourcepub fn from_per_candela(per_candela: T) -> Self
pub fn from_per_candela(per_candela: T) -> Self
Returns a new inverse luminosity value from the given number of inverse candela
§Arguments
per_candela- Any number-like type, representing a quantity of inverse candela
Sourcepub fn to_per_candela(&self) -> T
pub fn to_per_candela(&self) -> T
Returns a copy of this inverse luminosity value in inverse candela
Source§impl<T> InverseLuminosity<T>
impl<T> InverseLuminosity<T>
Sourcepub fn to_per_mcd(&self) -> T
pub fn to_per_mcd(&self) -> T
Returns a copy of this inverse luminosity value in inverse millicandela
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_per_mcd(per_mcd: T) -> Self
pub fn from_per_mcd(per_mcd: T) -> Self
Returns a new inverse luminosity value from the given number of inverse millicandela
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
per_mcd- Any number-like type, representing a quantity of inverse millicandela
Sourcepub fn to_per_ucd(&self) -> T
pub fn to_per_ucd(&self) -> T
Returns a copy of this inverse luminosity value in inverse microcandela
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_per_ucd(per_ucd: T) -> Self
pub fn from_per_ucd(per_ucd: T) -> Self
Returns a new inverse luminosity value from the given number of inverse microcandela
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
per_ucd- Any number-like type, representing a quantity of inverse microcandela
Sourcepub fn to_per_ncd(&self) -> T
pub fn to_per_ncd(&self) -> T
Returns a copy of this inverse luminosity value in inverse nanocandela
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_per_ncd(per_ncd: T) -> Self
pub fn from_per_ncd(per_ncd: T) -> Self
Returns a new inverse luminosity value from the given number of inverse nanocandela
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
per_ncd- Any number-like type, representing a quantity of inverse nanocandela
Sourcepub fn to_per_kcd(&self) -> T
pub fn to_per_kcd(&self) -> T
Returns a copy of this inverse luminosity value in inverse kilocandela
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_per_kcd(per_kcd: T) -> Self
pub fn from_per_kcd(per_kcd: T) -> Self
Returns a new inverse luminosity value from the given number of inverse kilocandela
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
per_kcd- Any number-like type, representing a quantity of inverse kilocandela
Sourcepub fn to_per_Mcd(&self) -> T
pub fn to_per_Mcd(&self) -> T
Returns a copy of this inverse luminosity value in inverse megacandela
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_per_Mcd(per_Mcd: T) -> Self
pub fn from_per_Mcd(per_Mcd: T) -> Self
Returns a new inverse luminosity value from the given number of inverse megacandela
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
per_Mcd- Any number-like type, representing a quantity of inverse megacandela
Sourcepub fn to_per_Gcd(&self) -> T
pub fn to_per_Gcd(&self) -> T
Returns a copy of this inverse luminosity value in inverse gigacandela
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_per_Gcd(per_Gcd: T) -> Self
pub fn from_per_Gcd(per_Gcd: T) -> Self
Returns a new inverse luminosity value from the given number of inverse gigacandela
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
per_Gcd- Any number-like type, representing a quantity of inverse gigacandela
Trait Implementations§
Source§impl<T: NumLike> Add for &InverseLuminosity<T>
Adding two unit values of the same type returns a new unit value of the same type (automatically clones the referenced data for convenient ergonomics)
impl<T: NumLike> Add for &InverseLuminosity<T>
Adding two unit values of the same type returns a new unit value of the same type (automatically clones the referenced data for convenient ergonomics)
Source§impl<T: NumLike> Add for InverseLuminosity<T>
Adding two unit values of the same type returns a new unit value of the same type
impl<T: NumLike> Add for InverseLuminosity<T>
Adding two unit values of the same type returns a new unit value of the same type
Source§impl<T: NumLike> AddAssign for InverseLuminosity<T>
Adds the given unit value to this unit value
impl<T: NumLike> AddAssign for InverseLuminosity<T>
Adds the given unit value to this unit value
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
+= operation. Read moreSource§impl<T: Clone + NumLike> Clone for InverseLuminosity<T>
impl<T: Clone + NumLike> Clone for InverseLuminosity<T>
Source§fn clone(&self) -> InverseLuminosity<T>
fn clone(&self) -> InverseLuminosity<T>
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl<T> Display for InverseLuminosity<T>where
T: NumLike,
impl<T> Display for InverseLuminosity<T>where
T: NumLike,
Source§impl<T> Div<&InverseLuminosity<T>> for &InverseLuminousFlux<T>where
T: NumLike,
Dividing a InverseLuminousFlux by a InverseLuminosity returns a value of type InverseSolidAngle
impl<T> Div<&InverseLuminosity<T>> for &InverseLuminousFlux<T>where
T: NumLike,
Dividing a InverseLuminousFlux by a InverseLuminosity returns a value of type InverseSolidAngle
Source§type Output = InverseSolidAngle<T>
type Output = InverseSolidAngle<T>
/ operator.Source§impl<T> Div<&InverseLuminosity<T>> for &SolidAngle<T>where
T: NumLike,
Dividing a SolidAngle by a InverseLuminosity returns a value of type LuminousFlux
impl<T> Div<&InverseLuminosity<T>> for &SolidAngle<T>where
T: NumLike,
Dividing a SolidAngle by a InverseLuminosity returns a value of type LuminousFlux
Source§type Output = LuminousFlux<T>
type Output = LuminousFlux<T>
/ operator.Source§impl<T> Div<&InverseLuminosity<T>> for &f32
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
impl<T> Div<&InverseLuminosity<T>> for &f32
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
Source§type Output = Luminosity<T>
type Output = Luminosity<T>
/ operator.Source§impl<T> Div<&InverseLuminosity<T>> for &f64
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
impl<T> Div<&InverseLuminosity<T>> for &f64
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
Source§type Output = Luminosity<T>
type Output = Luminosity<T>
/ operator.Source§impl<T> Div<&InverseLuminosity<T>> for &i32
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
impl<T> Div<&InverseLuminosity<T>> for &i32
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
Source§type Output = Luminosity<T>
type Output = Luminosity<T>
/ operator.Source§impl<T> Div<&InverseLuminosity<T>> for &i64
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
impl<T> Div<&InverseLuminosity<T>> for &i64
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
Source§type Output = Luminosity<T>
type Output = Luminosity<T>
/ operator.Source§impl<T> Div<&InverseLuminosity<T>> for InverseLuminousFlux<T>where
T: NumLike,
Dividing a InverseLuminousFlux by a InverseLuminosity returns a value of type InverseSolidAngle
impl<T> Div<&InverseLuminosity<T>> for InverseLuminousFlux<T>where
T: NumLike,
Dividing a InverseLuminousFlux by a InverseLuminosity returns a value of type InverseSolidAngle
Source§type Output = InverseSolidAngle<T>
type Output = InverseSolidAngle<T>
/ operator.Source§impl<T> Div<&InverseLuminosity<T>> for SolidAngle<T>where
T: NumLike,
Dividing a SolidAngle by a InverseLuminosity returns a value of type LuminousFlux
impl<T> Div<&InverseLuminosity<T>> for SolidAngle<T>where
T: NumLike,
Dividing a SolidAngle by a InverseLuminosity returns a value of type LuminousFlux
Source§type Output = LuminousFlux<T>
type Output = LuminousFlux<T>
/ operator.Source§impl<T> Div<&InverseLuminosity<T>> for f32
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
impl<T> Div<&InverseLuminosity<T>> for f32
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
Source§type Output = Luminosity<T>
type Output = Luminosity<T>
/ operator.Source§impl<T> Div<&InverseLuminosity<T>> for f64
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
impl<T> Div<&InverseLuminosity<T>> for f64
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
Source§type Output = Luminosity<T>
type Output = Luminosity<T>
/ operator.Source§impl<T> Div<&InverseLuminosity<T>> for i32
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
impl<T> Div<&InverseLuminosity<T>> for i32
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
Source§type Output = Luminosity<T>
type Output = Luminosity<T>
/ operator.Source§impl<T> Div<&InverseLuminosity<T>> for i64
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
impl<T> Div<&InverseLuminosity<T>> for i64
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
Source§type Output = Luminosity<T>
type Output = Luminosity<T>
/ operator.Source§impl<T> Div<&InverseLuminousFlux<T>> for &InverseLuminosity<T>where
T: NumLike,
Dividing a InverseLuminosity by a InverseLuminousFlux returns a value of type SolidAngle
impl<T> Div<&InverseLuminousFlux<T>> for &InverseLuminosity<T>where
T: NumLike,
Dividing a InverseLuminosity by a InverseLuminousFlux returns a value of type SolidAngle
Source§type Output = SolidAngle<T>
type Output = SolidAngle<T>
/ operator.Source§impl<T> Div<&InverseLuminousFlux<T>> for InverseLuminosity<T>where
T: NumLike,
Dividing a InverseLuminosity by a InverseLuminousFlux returns a value of type SolidAngle
impl<T> Div<&InverseLuminousFlux<T>> for InverseLuminosity<T>where
T: NumLike,
Dividing a InverseLuminosity by a InverseLuminousFlux returns a value of type SolidAngle
Source§type Output = SolidAngle<T>
type Output = SolidAngle<T>
/ operator.Source§impl<T> Div<&SolidAngle<T>> for &InverseLuminosity<T>where
T: NumLike,
Dividing a InverseLuminosity by a SolidAngle returns a value of type InverseLuminousFlux
impl<T> Div<&SolidAngle<T>> for &InverseLuminosity<T>where
T: NumLike,
Dividing a InverseLuminosity by a SolidAngle returns a value of type InverseLuminousFlux
Source§type Output = InverseLuminousFlux<T>
type Output = InverseLuminousFlux<T>
/ operator.Source§impl<T> Div<&SolidAngle<T>> for InverseLuminosity<T>where
T: NumLike,
Dividing a InverseLuminosity by a SolidAngle returns a value of type InverseLuminousFlux
impl<T> Div<&SolidAngle<T>> for InverseLuminosity<T>where
T: NumLike,
Dividing a InverseLuminosity by a SolidAngle returns a value of type InverseLuminousFlux
Source§type Output = InverseLuminousFlux<T>
type Output = InverseLuminousFlux<T>
/ operator.Source§impl<T> Div<&T> for &InverseLuminosity<T>where
T: NumLike,
Dividing a unit value by a scalar value returns a unit value
impl<T> Div<&T> for &InverseLuminosity<T>where
T: NumLike,
Dividing a unit value by a scalar value returns a unit value
Source§impl<T> Div<&T> for InverseLuminosity<T>where
T: NumLike,
Dividing a unit value by a scalar value returns a unit value
impl<T> Div<&T> for InverseLuminosity<T>where
T: NumLike,
Dividing a unit value by a scalar value returns a unit value
Source§impl<T> Div<InverseLuminosity<T>> for &InverseLuminousFlux<T>where
T: NumLike,
Dividing a InverseLuminousFlux by a InverseLuminosity returns a value of type InverseSolidAngle
impl<T> Div<InverseLuminosity<T>> for &InverseLuminousFlux<T>where
T: NumLike,
Dividing a InverseLuminousFlux by a InverseLuminosity returns a value of type InverseSolidAngle
Source§type Output = InverseSolidAngle<T>
type Output = InverseSolidAngle<T>
/ operator.Source§impl<T> Div<InverseLuminosity<T>> for &SolidAngle<T>where
T: NumLike,
Dividing a SolidAngle by a InverseLuminosity returns a value of type LuminousFlux
impl<T> Div<InverseLuminosity<T>> for &SolidAngle<T>where
T: NumLike,
Dividing a SolidAngle by a InverseLuminosity returns a value of type LuminousFlux
Source§type Output = LuminousFlux<T>
type Output = LuminousFlux<T>
/ operator.Source§impl<T> Div<InverseLuminosity<T>> for &f32
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
impl<T> Div<InverseLuminosity<T>> for &f32
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
Source§type Output = Luminosity<T>
type Output = Luminosity<T>
/ operator.Source§impl<T> Div<InverseLuminosity<T>> for &f64
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
impl<T> Div<InverseLuminosity<T>> for &f64
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
Source§type Output = Luminosity<T>
type Output = Luminosity<T>
/ operator.Source§impl<T> Div<InverseLuminosity<T>> for &i32
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
impl<T> Div<InverseLuminosity<T>> for &i32
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
Source§type Output = Luminosity<T>
type Output = Luminosity<T>
/ operator.Source§impl<T> Div<InverseLuminosity<T>> for &i64
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
impl<T> Div<InverseLuminosity<T>> for &i64
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
Source§type Output = Luminosity<T>
type Output = Luminosity<T>
/ operator.Source§impl<T> Div<InverseLuminosity<T>> for InverseLuminousFlux<T>where
T: NumLike,
Dividing a InverseLuminousFlux by a InverseLuminosity returns a value of type InverseSolidAngle
impl<T> Div<InverseLuminosity<T>> for InverseLuminousFlux<T>where
T: NumLike,
Dividing a InverseLuminousFlux by a InverseLuminosity returns a value of type InverseSolidAngle
Source§type Output = InverseSolidAngle<T>
type Output = InverseSolidAngle<T>
/ operator.Source§impl<T> Div<InverseLuminosity<T>> for SolidAngle<T>where
T: NumLike,
Dividing a SolidAngle by a InverseLuminosity returns a value of type LuminousFlux
impl<T> Div<InverseLuminosity<T>> for SolidAngle<T>where
T: NumLike,
Dividing a SolidAngle by a InverseLuminosity returns a value of type LuminousFlux
Source§type Output = LuminousFlux<T>
type Output = LuminousFlux<T>
/ operator.Source§impl<T> Div<InverseLuminosity<T>> for f32
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
impl<T> Div<InverseLuminosity<T>> for f32
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
Source§type Output = Luminosity<T>
type Output = Luminosity<T>
/ operator.Source§impl<T> Div<InverseLuminosity<T>> for f64
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
impl<T> Div<InverseLuminosity<T>> for f64
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
Source§type Output = Luminosity<T>
type Output = Luminosity<T>
/ operator.Source§impl<T> Div<InverseLuminosity<T>> for i32
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
impl<T> Div<InverseLuminosity<T>> for i32
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
Source§type Output = Luminosity<T>
type Output = Luminosity<T>
/ operator.Source§impl<T> Div<InverseLuminosity<T>> for i64
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
impl<T> Div<InverseLuminosity<T>> for i64
Dividing a scalar value by a InverseLuminosity unit value returns a value of type Luminosity
Source§type Output = Luminosity<T>
type Output = Luminosity<T>
/ operator.Source§impl<T> Div<InverseLuminousFlux<T>> for &InverseLuminosity<T>where
T: NumLike,
Dividing a InverseLuminosity by a InverseLuminousFlux returns a value of type SolidAngle
impl<T> Div<InverseLuminousFlux<T>> for &InverseLuminosity<T>where
T: NumLike,
Dividing a InverseLuminosity by a InverseLuminousFlux returns a value of type SolidAngle
Source§type Output = SolidAngle<T>
type Output = SolidAngle<T>
/ operator.Source§impl<T> Div<InverseLuminousFlux<T>> for InverseLuminosity<T>where
T: NumLike,
Dividing a InverseLuminosity by a InverseLuminousFlux returns a value of type SolidAngle
impl<T> Div<InverseLuminousFlux<T>> for InverseLuminosity<T>where
T: NumLike,
Dividing a InverseLuminosity by a InverseLuminousFlux returns a value of type SolidAngle
Source§type Output = SolidAngle<T>
type Output = SolidAngle<T>
/ operator.Source§impl<T> Div<SolidAngle<T>> for &InverseLuminosity<T>where
T: NumLike,
Dividing a InverseLuminosity by a SolidAngle returns a value of type InverseLuminousFlux
impl<T> Div<SolidAngle<T>> for &InverseLuminosity<T>where
T: NumLike,
Dividing a InverseLuminosity by a SolidAngle returns a value of type InverseLuminousFlux
Source§type Output = InverseLuminousFlux<T>
type Output = InverseLuminousFlux<T>
/ operator.Source§impl<T> Div<SolidAngle<T>> for InverseLuminosity<T>where
T: NumLike,
Dividing a InverseLuminosity by a SolidAngle returns a value of type InverseLuminousFlux
impl<T> Div<SolidAngle<T>> for InverseLuminosity<T>where
T: NumLike,
Dividing a InverseLuminosity by a SolidAngle returns a value of type InverseLuminousFlux
Source§type Output = InverseLuminousFlux<T>
type Output = InverseLuminousFlux<T>
/ operator.Source§impl<T: NumLike> Div<T> for &InverseLuminosity<T>
Dividing a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T: NumLike> Div<T> for &InverseLuminosity<T>
Dividing a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T: NumLike> Div<T> for InverseLuminosity<T>
Dividing a unit value by a scalar value returns a unit value
impl<T: NumLike> Div<T> for InverseLuminosity<T>
Dividing a unit value by a scalar value returns a unit value
Source§impl<T: NumLike> Div for &InverseLuminosity<T>
Dividing a unit value by another of the same type returns a scalar value (automatically clones the referenced data for convenient ergonomics)
impl<T: NumLike> Div for &InverseLuminosity<T>
Dividing a unit value by another of the same type returns a scalar value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T: NumLike> Div for InverseLuminosity<T>
Dividing a unit value by another of the same type returns a scalar value
impl<T: NumLike> Div for InverseLuminosity<T>
Dividing a unit value by another of the same type returns a scalar value
Source§impl<T: NumLike> DivAssign<T> for InverseLuminosity<T>
Divides this unit value by a scalar
impl<T: NumLike> DivAssign<T> for InverseLuminosity<T>
Divides this unit value by a scalar
Source§fn div_assign(&mut self, rhs: T)
fn div_assign(&mut self, rhs: T)
/= operation. Read moreSource§impl<T> Hash for InverseLuminosity<T>
This struct implements the Hash trait if it’s member data type also has the Hash trait
impl<T> Hash for InverseLuminosity<T>
This struct implements the Hash trait if it’s member data type also has the Hash trait
Source§impl<T> Mul<&InverseLuminosity<T>> for &InverseSolidAngle<T>where
T: NumLike,
Multiplying a InverseSolidAngle by a InverseLuminosity returns a value of type InverseLuminousFlux
impl<T> Mul<&InverseLuminosity<T>> for &InverseSolidAngle<T>where
T: NumLike,
Multiplying a InverseSolidAngle by a InverseLuminosity returns a value of type InverseLuminousFlux
Source§type Output = InverseLuminousFlux<T>
type Output = InverseLuminousFlux<T>
* operator.Source§impl<T> Mul<&InverseLuminosity<T>> for &LuminousFlux<T>where
T: NumLike,
Multiplying a LuminousFlux by a InverseLuminosity returns a value of type SolidAngle
impl<T> Mul<&InverseLuminosity<T>> for &LuminousFlux<T>where
T: NumLike,
Multiplying a LuminousFlux by a InverseLuminosity returns a value of type SolidAngle
Source§type Output = SolidAngle<T>
type Output = SolidAngle<T>
* operator.Source§impl<T> Mul<&InverseLuminosity<T>> for InverseSolidAngle<T>where
T: NumLike,
Multiplying a InverseSolidAngle by a InverseLuminosity returns a value of type InverseLuminousFlux
impl<T> Mul<&InverseLuminosity<T>> for InverseSolidAngle<T>where
T: NumLike,
Multiplying a InverseSolidAngle by a InverseLuminosity returns a value of type InverseLuminousFlux
Source§type Output = InverseLuminousFlux<T>
type Output = InverseLuminousFlux<T>
* operator.Source§impl<T> Mul<&InverseLuminosity<T>> for LuminousFlux<T>where
T: NumLike,
Multiplying a LuminousFlux by a InverseLuminosity returns a value of type SolidAngle
impl<T> Mul<&InverseLuminosity<T>> for LuminousFlux<T>where
T: NumLike,
Multiplying a LuminousFlux by a InverseLuminosity returns a value of type SolidAngle
Source§type Output = SolidAngle<T>
type Output = SolidAngle<T>
* operator.Source§impl<T> Mul<&InverseLuminosity<T>> for f32
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T> Mul<&InverseLuminosity<T>> for f32
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§type Output = InverseLuminosity<T>
type Output = InverseLuminosity<T>
* operator.Source§impl<T> Mul<&InverseLuminosity<T>> for f64
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T> Mul<&InverseLuminosity<T>> for f64
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§type Output = InverseLuminosity<T>
type Output = InverseLuminosity<T>
* operator.Source§impl<T> Mul<&InverseLuminosity<T>> for i16
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T> Mul<&InverseLuminosity<T>> for i16
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§type Output = InverseLuminosity<T>
type Output = InverseLuminosity<T>
* operator.Source§impl<T> Mul<&InverseLuminosity<T>> for i32
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T> Mul<&InverseLuminosity<T>> for i32
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§type Output = InverseLuminosity<T>
type Output = InverseLuminosity<T>
* operator.Source§impl<T> Mul<&InverseLuminosity<T>> for i64
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T> Mul<&InverseLuminosity<T>> for i64
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§type Output = InverseLuminosity<T>
type Output = InverseLuminosity<T>
* operator.Source§impl<T> Mul<&InverseLuminosity<T>> for i8
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T> Mul<&InverseLuminosity<T>> for i8
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§type Output = InverseLuminosity<T>
type Output = InverseLuminosity<T>
* operator.Source§impl<T> Mul<&InverseLuminosity<T>> for u16
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T> Mul<&InverseLuminosity<T>> for u16
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§type Output = InverseLuminosity<T>
type Output = InverseLuminosity<T>
* operator.Source§impl<T> Mul<&InverseLuminosity<T>> for u32
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T> Mul<&InverseLuminosity<T>> for u32
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§type Output = InverseLuminosity<T>
type Output = InverseLuminosity<T>
* operator.Source§impl<T> Mul<&InverseLuminosity<T>> for u64
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T> Mul<&InverseLuminosity<T>> for u64
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§type Output = InverseLuminosity<T>
type Output = InverseLuminosity<T>
* operator.Source§impl<T> Mul<&InverseLuminosity<T>> for u8
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T> Mul<&InverseLuminosity<T>> for u8
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§type Output = InverseLuminosity<T>
type Output = InverseLuminosity<T>
* operator.Source§impl<T> Mul<&InverseSolidAngle<T>> for &InverseLuminosity<T>where
T: NumLike,
Multiplying a InverseLuminosity by a InverseSolidAngle returns a value of type InverseLuminousFlux
impl<T> Mul<&InverseSolidAngle<T>> for &InverseLuminosity<T>where
T: NumLike,
Multiplying a InverseLuminosity by a InverseSolidAngle returns a value of type InverseLuminousFlux
Source§type Output = InverseLuminousFlux<T>
type Output = InverseLuminousFlux<T>
* operator.Source§impl<T> Mul<&InverseSolidAngle<T>> for InverseLuminosity<T>where
T: NumLike,
Multiplying a InverseLuminosity by a InverseSolidAngle returns a value of type InverseLuminousFlux
impl<T> Mul<&InverseSolidAngle<T>> for InverseLuminosity<T>where
T: NumLike,
Multiplying a InverseLuminosity by a InverseSolidAngle returns a value of type InverseLuminousFlux
Source§type Output = InverseLuminousFlux<T>
type Output = InverseLuminousFlux<T>
* operator.Source§impl<T> Mul<&LuminousFlux<T>> for &InverseLuminosity<T>where
T: NumLike,
Multiplying a InverseLuminosity by a LuminousFlux returns a value of type SolidAngle
impl<T> Mul<&LuminousFlux<T>> for &InverseLuminosity<T>where
T: NumLike,
Multiplying a InverseLuminosity by a LuminousFlux returns a value of type SolidAngle
Source§type Output = SolidAngle<T>
type Output = SolidAngle<T>
* operator.Source§impl<T> Mul<&LuminousFlux<T>> for InverseLuminosity<T>where
T: NumLike,
Multiplying a InverseLuminosity by a LuminousFlux returns a value of type SolidAngle
impl<T> Mul<&LuminousFlux<T>> for InverseLuminosity<T>where
T: NumLike,
Multiplying a InverseLuminosity by a LuminousFlux returns a value of type SolidAngle
Source§type Output = SolidAngle<T>
type Output = SolidAngle<T>
* operator.Source§impl<T> Mul<&T> for &InverseLuminosity<T>where
T: NumLike,
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<&T> for &InverseLuminosity<T>where
T: NumLike,
Multiplying a unit value by a scalar value returns a unit value
Source§impl<T> Mul<&T> for InverseLuminosity<T>where
T: NumLike,
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<&T> for InverseLuminosity<T>where
T: NumLike,
Multiplying a unit value by a scalar value returns a unit value
Source§impl<T> Mul<InverseLuminosity<T>> for &InverseSolidAngle<T>where
T: NumLike,
Multiplying a InverseSolidAngle by a InverseLuminosity returns a value of type InverseLuminousFlux
impl<T> Mul<InverseLuminosity<T>> for &InverseSolidAngle<T>where
T: NumLike,
Multiplying a InverseSolidAngle by a InverseLuminosity returns a value of type InverseLuminousFlux
Source§type Output = InverseLuminousFlux<T>
type Output = InverseLuminousFlux<T>
* operator.Source§impl<T> Mul<InverseLuminosity<T>> for &LuminousFlux<T>where
T: NumLike,
Multiplying a LuminousFlux by a InverseLuminosity returns a value of type SolidAngle
impl<T> Mul<InverseLuminosity<T>> for &LuminousFlux<T>where
T: NumLike,
Multiplying a LuminousFlux by a InverseLuminosity returns a value of type SolidAngle
Source§type Output = SolidAngle<T>
type Output = SolidAngle<T>
* operator.Source§impl<T> Mul<InverseLuminosity<T>> for InverseSolidAngle<T>where
T: NumLike,
Multiplying a InverseSolidAngle by a InverseLuminosity returns a value of type InverseLuminousFlux
impl<T> Mul<InverseLuminosity<T>> for InverseSolidAngle<T>where
T: NumLike,
Multiplying a InverseSolidAngle by a InverseLuminosity returns a value of type InverseLuminousFlux
Source§type Output = InverseLuminousFlux<T>
type Output = InverseLuminousFlux<T>
* operator.Source§impl<T> Mul<InverseLuminosity<T>> for LuminousFlux<T>where
T: NumLike,
Multiplying a LuminousFlux by a InverseLuminosity returns a value of type SolidAngle
impl<T> Mul<InverseLuminosity<T>> for LuminousFlux<T>where
T: NumLike,
Multiplying a LuminousFlux by a InverseLuminosity returns a value of type SolidAngle
Source§type Output = SolidAngle<T>
type Output = SolidAngle<T>
* operator.Source§impl<T> Mul<InverseLuminosity<T>> for f32
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<InverseLuminosity<T>> for f32
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = InverseLuminosity<T>
type Output = InverseLuminosity<T>
* operator.Source§impl<T> Mul<InverseLuminosity<T>> for f64
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<InverseLuminosity<T>> for f64
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = InverseLuminosity<T>
type Output = InverseLuminosity<T>
* operator.Source§impl<T> Mul<InverseLuminosity<T>> for i16
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<InverseLuminosity<T>> for i16
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = InverseLuminosity<T>
type Output = InverseLuminosity<T>
* operator.Source§impl<T> Mul<InverseLuminosity<T>> for i32
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<InverseLuminosity<T>> for i32
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = InverseLuminosity<T>
type Output = InverseLuminosity<T>
* operator.Source§impl<T> Mul<InverseLuminosity<T>> for i64
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<InverseLuminosity<T>> for i64
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = InverseLuminosity<T>
type Output = InverseLuminosity<T>
* operator.Source§impl<T> Mul<InverseLuminosity<T>> for i8
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<InverseLuminosity<T>> for i8
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = InverseLuminosity<T>
type Output = InverseLuminosity<T>
* operator.Source§impl<T> Mul<InverseLuminosity<T>> for u16
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<InverseLuminosity<T>> for u16
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = InverseLuminosity<T>
type Output = InverseLuminosity<T>
* operator.Source§impl<T> Mul<InverseLuminosity<T>> for u32
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<InverseLuminosity<T>> for u32
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = InverseLuminosity<T>
type Output = InverseLuminosity<T>
* operator.Source§impl<T> Mul<InverseLuminosity<T>> for u64
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<InverseLuminosity<T>> for u64
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = InverseLuminosity<T>
type Output = InverseLuminosity<T>
* operator.Source§impl<T> Mul<InverseLuminosity<T>> for u8
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<InverseLuminosity<T>> for u8
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = InverseLuminosity<T>
type Output = InverseLuminosity<T>
* operator.Source§impl<T> Mul<InverseSolidAngle<T>> for &InverseLuminosity<T>where
T: NumLike,
Multiplying a InverseLuminosity by a InverseSolidAngle returns a value of type InverseLuminousFlux
impl<T> Mul<InverseSolidAngle<T>> for &InverseLuminosity<T>where
T: NumLike,
Multiplying a InverseLuminosity by a InverseSolidAngle returns a value of type InverseLuminousFlux
Source§type Output = InverseLuminousFlux<T>
type Output = InverseLuminousFlux<T>
* operator.Source§impl<T> Mul<InverseSolidAngle<T>> for InverseLuminosity<T>where
T: NumLike,
Multiplying a InverseLuminosity by a InverseSolidAngle returns a value of type InverseLuminousFlux
impl<T> Mul<InverseSolidAngle<T>> for InverseLuminosity<T>where
T: NumLike,
Multiplying a InverseLuminosity by a InverseSolidAngle returns a value of type InverseLuminousFlux
Source§type Output = InverseLuminousFlux<T>
type Output = InverseLuminousFlux<T>
* operator.Source§impl<T> Mul<LuminousFlux<T>> for &InverseLuminosity<T>where
T: NumLike,
Multiplying a InverseLuminosity by a LuminousFlux returns a value of type SolidAngle
impl<T> Mul<LuminousFlux<T>> for &InverseLuminosity<T>where
T: NumLike,
Multiplying a InverseLuminosity by a LuminousFlux returns a value of type SolidAngle
Source§type Output = SolidAngle<T>
type Output = SolidAngle<T>
* operator.Source§impl<T> Mul<LuminousFlux<T>> for InverseLuminosity<T>where
T: NumLike,
Multiplying a InverseLuminosity by a LuminousFlux returns a value of type SolidAngle
impl<T> Mul<LuminousFlux<T>> for InverseLuminosity<T>where
T: NumLike,
Multiplying a InverseLuminosity by a LuminousFlux returns a value of type SolidAngle
Source§type Output = SolidAngle<T>
type Output = SolidAngle<T>
* operator.Source§impl<T: NumLike> Mul<T> for &InverseLuminosity<T>
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T: NumLike> Mul<T> for &InverseLuminosity<T>
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T: NumLike> Mul<T> for InverseLuminosity<T>
Multiplying a unit value by a scalar value returns a unit value
impl<T: NumLike> Mul<T> for InverseLuminosity<T>
Multiplying a unit value by a scalar value returns a unit value
Source§impl<T: NumLike> MulAssign<T> for InverseLuminosity<T>
Multiplies this unit value by a scalar
impl<T: NumLike> MulAssign<T> for InverseLuminosity<T>
Multiplies this unit value by a scalar
Source§fn mul_assign(&mut self, rhs: T)
fn mul_assign(&mut self, rhs: T)
*= operation. Read moreSource§impl<T: NumLike> Neg for &InverseLuminosity<T>
Flips the sign of this unit value (automatically clones the referenced data for convenient ergonomics)
impl<T: NumLike> Neg for &InverseLuminosity<T>
Flips the sign of this unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T: NumLike> Neg for InverseLuminosity<T>
Flips the sign of this unit value
impl<T: NumLike> Neg for InverseLuminosity<T>
Flips the sign of this unit value
Source§impl<T> Ord for InverseLuminosity<T>
This struct implements the Ord trait if it’s member data type also has the Ord trait
impl<T> Ord for InverseLuminosity<T>
This struct implements the Ord trait if it’s member data type also has the Ord trait
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl<T> PartialEq for InverseLuminosity<T>
This struct implements the PartialEq trait if it’s member data type also has the PartialEq trait
impl<T> PartialEq for InverseLuminosity<T>
This struct implements the PartialEq trait if it’s member data type also has the PartialEq trait
Source§impl<T> PartialOrd for InverseLuminosity<T>where
T: NumLike + PartialOrd,
This struct implements the PartialOrd trait if it’s member data type also has the PartialOrd trait
impl<T> PartialOrd for InverseLuminosity<T>where
T: NumLike + PartialOrd,
This struct implements the PartialOrd trait if it’s member data type also has the PartialOrd trait
Source§impl<T: NumLike> Sub for &InverseLuminosity<T>
Subtracting two unit values of the same type returns a new unit value of the same type (automatically clones the referenced data for convenient ergonomics)
impl<T: NumLike> Sub for &InverseLuminosity<T>
Subtracting two unit values of the same type returns a new unit value of the same type (automatically clones the referenced data for convenient ergonomics)
Source§impl<T: NumLike> Sub for InverseLuminosity<T>
Subtracting two unit values of the same type returns a new unit value of the same type
impl<T: NumLike> Sub for InverseLuminosity<T>
Subtracting two unit values of the same type returns a new unit value of the same type
Source§impl<T: NumLike> SubAssign for InverseLuminosity<T>
Subtracts the given unit value from this unit value
impl<T: NumLike> SubAssign for InverseLuminosity<T>
Subtracts the given unit value from this unit value
Source§fn sub_assign(&mut self, rhs: Self)
fn sub_assign(&mut self, rhs: Self)
-= operation. Read moreimpl<T> Copy for InverseLuminosity<T>
This struct implements the Copy marker trait if it’s member data type also has the Copy trait
impl<T> Eq for InverseLuminosity<T>
This struct implements the core::cmp::Eq trait if it’s member data type also has the core::cmp::Eq trait