Skip to main content

InverseArea

Struct InverseArea 

Source
pub struct InverseArea<T: NumLike> {
    pub per_m2: T,
}
Expand description

The inverse of area unit type, defined as inverse square meters in SI units

Fields§

§per_m2: T

The value of this Inverse area in inverse square meters

Implementations§

Source§

impl<T> InverseArea<T>
where T: NumLike,

Source

pub fn unit_name() -> &'static str

Returns the standard unit name of inverse area: “inverse square meters”

Source

pub fn unit_symbol() -> &'static str

Returns the abbreviated name or symbol of inverse area: “1/m²” for inverse square meters

Source

pub fn from_per_m2(per_m2: T) -> Self

Returns a new inverse area value from the given number of inverse square meters

§Arguments
  • per_m2 - Any number-like type, representing a quantity of inverse square meters
Source

pub fn to_per_m2(&self) -> T

Returns a copy of this inverse area value in inverse square meters

Source

pub fn from_per_square_meter(per_square_meter: T) -> Self

Returns a new inverse area value from the given number of inverse square meters

§Arguments
  • per_square_meter - Any number-like type, representing a quantity of inverse square meters
Source

pub fn to_per_square_meter(&self) -> T

Returns a copy of this inverse area value in inverse square meters

Source§

impl<T> InverseArea<T>
where T: NumLike + From<f64>,

Source

pub fn to_per_cm2(&self) -> T

Returns a copy of this inverse area value in inverse square cm

Note: This method is not available for f32 and other number types lacking the From<f64> trait

Source

pub fn from_per_cm2(per_cm2: T) -> Self

Returns a new inverse area value from the given number of inverse square cm

Note: This method is not available for f32 and other number types lacking the From<f64> trait

§Arguments
  • per_cm2 - Any number-like type, representing a quantity of inverse square cm
Source

pub fn to_per_square_cm(&self) -> T

Returns a copy of this inverse area value in inverse square cm

Note: This method is not available for f32 and other number types lacking the From<f64> trait

Source

pub fn from_per_square_cm(per_square_cm: T) -> Self

Returns a new inverse area value from the given number of inverse square cm

Note: This method is not available for f32 and other number types lacking the From<f64> trait

§Arguments
  • per_square_cm - Any number-like type, representing a quantity of inverse square cm
Source

pub fn to_per_mm2(&self) -> T

Returns a copy of this inverse area value in inverse square mm

Note: This method is not available for f32 and other number types lacking the From<f64> trait

Source

pub fn from_per_mm2(per_mm2: T) -> Self

Returns a new inverse area value from the given number of inverse square mm

Note: This method is not available for f32 and other number types lacking the From<f64> trait

§Arguments
  • per_mm2 - Any number-like type, representing a quantity of inverse square mm
Source

pub fn to_per_um2(&self) -> T

Returns a copy of this inverse area value in inverse square um

Note: This method is not available for f32 and other number types lacking the From<f64> trait

Source

pub fn from_per_um2(per_um2: T) -> Self

Returns a new inverse area value from the given number of inverse square um

Note: This method is not available for f32 and other number types lacking the From<f64> trait

§Arguments
  • per_um2 - Any number-like type, representing a quantity of inverse square um
Source

pub fn to_per_nm2(&self) -> T

Returns a copy of this inverse area value in inverse square nm

Note: This method is not available for f32 and other number types lacking the From<f64> trait

Source

pub fn from_per_nm2(per_nm2: T) -> Self

Returns a new inverse area value from the given number of inverse square nm

Note: This method is not available for f32 and other number types lacking the From<f64> trait

§Arguments
  • per_nm2 - Any number-like type, representing a quantity of inverse square nm
Source

pub fn to_per_km2(&self) -> T

Returns a copy of this inverse area value in inverse square km

Note: This method is not available for f32 and other number types lacking the From<f64> trait

Source

pub fn from_per_km2(per_km2: T) -> Self

Returns a new inverse area value from the given number of inverse square km

Note: This method is not available for f32 and other number types lacking the From<f64> trait

§Arguments
  • per_km2 - Any number-like type, representing a quantity of inverse square km

Trait Implementations§

Source§

impl<T: NumLike> Add for &InverseArea<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§

type Output = InverseArea<T>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: NumLike> Add for InverseArea<T>

Adding two unit values of the same type returns a new unit value of the same type

Source§

type Output = InverseArea<T>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: NumLike> AddAssign for InverseArea<T>

Adds the given unit value to this unit value

Source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
Source§

impl<T: Clone + NumLike> Clone for InverseArea<T>

Source§

fn clone(&self) -> InverseArea<T>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: Debug + NumLike> Debug for InverseArea<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T> Display for InverseArea<T>
where T: NumLike,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T> Div<&AreaDensity<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a AreaDensity returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &AreaDensity<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&AreaDensity<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a AreaDensity returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &AreaDensity<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&Distance<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a Distance returns a value of type InverseVolume

Source§

type Output = InverseVolume<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Distance<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&Distance<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a Distance returns a value of type InverseVolume

Source§

type Output = InverseVolume<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Distance<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&Illuminance<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a Illuminance returns a value of type InverseLuminousFlux

Source§

type Output = InverseLuminousFlux<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Illuminance<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&Illuminance<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a Illuminance returns a value of type InverseLuminousFlux

Source§

type Output = InverseLuminousFlux<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Illuminance<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for &AreaDensity<T>
where T: NumLike,

Dividing a AreaDensity by a InverseArea returns a value of type Mass

Source§

type Output = Mass<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for &Distance<T>
where T: NumLike,

Dividing a Distance by a InverseArea returns a value of type Volume

Source§

type Output = Volume<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for &Illuminance<T>
where T: NumLike,

Dividing a Illuminance by a InverseArea returns a value of type LuminousFlux

Source§

type Output = LuminousFlux<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for &InverseDistance<T>
where T: NumLike,

Dividing a InverseDistance by a InverseArea returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for &InverseForce<T>
where T: NumLike,

Dividing a InverseForce by a InverseArea returns a value of type InversePressure

Source§

type Output = InversePressure<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for &InverseLuminousFlux<T>
where T: NumLike,

Dividing a InverseLuminousFlux by a InverseArea returns a value of type AreaPerLumen

Source§

type Output = AreaPerLumen<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for &InverseMagneticFlux<T>
where T: NumLike,

Dividing a InverseMagneticFlux by a InverseArea returns a value of type InverseMagneticFluxDensity

Source§

type Output = InverseMagneticFluxDensity<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for &InverseMass<T>
where T: NumLike,

Dividing a InverseMass by a InverseArea returns a value of type AreaPerMass

Source§

type Output = AreaPerMass<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for &InverseMomentOfInertia<T>
where T: NumLike,

Dividing a InverseMomentOfInertia by a InverseArea returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for &InverseVolume<T>
where T: NumLike,

Dividing a InverseVolume by a InverseArea returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for &MagneticFluxDensity<T>
where T: NumLike,

Dividing a MagneticFluxDensity by a InverseArea returns a value of type MagneticFlux

Source§

type Output = MagneticFlux<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for &Pressure<T>
where T: NumLike,

Dividing a Pressure by a InverseArea returns a value of type Force

Source§

type Output = Force<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for &f32
where T: NumLike + From<f32>,

Dividing a scalar value by a InverseArea unit value returns a value of type Area

Source§

type Output = Area<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for &f64
where T: NumLike + From<f64>,

Dividing a scalar value by a InverseArea unit value returns a value of type Area

Source§

type Output = Area<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for &i32
where T: NumLike + From<i32>,

Dividing a scalar value by a InverseArea unit value returns a value of type Area

Source§

type Output = Area<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for &i64
where T: NumLike + From<i64>,

Dividing a scalar value by a InverseArea unit value returns a value of type Area

Source§

type Output = Area<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for AreaDensity<T>
where T: NumLike,

Dividing a AreaDensity by a InverseArea returns a value of type Mass

Source§

type Output = Mass<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for Distance<T>
where T: NumLike,

Dividing a Distance by a InverseArea returns a value of type Volume

Source§

type Output = Volume<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for Illuminance<T>
where T: NumLike,

Dividing a Illuminance by a InverseArea returns a value of type LuminousFlux

Source§

type Output = LuminousFlux<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for InverseDistance<T>
where T: NumLike,

Dividing a InverseDistance by a InverseArea returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for InverseForce<T>
where T: NumLike,

Dividing a InverseForce by a InverseArea returns a value of type InversePressure

Source§

type Output = InversePressure<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for InverseLuminousFlux<T>
where T: NumLike,

Dividing a InverseLuminousFlux by a InverseArea returns a value of type AreaPerLumen

Source§

type Output = AreaPerLumen<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for InverseMagneticFlux<T>
where T: NumLike,

Dividing a InverseMagneticFlux by a InverseArea returns a value of type InverseMagneticFluxDensity

Source§

type Output = InverseMagneticFluxDensity<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for InverseMass<T>
where T: NumLike,

Dividing a InverseMass by a InverseArea returns a value of type AreaPerMass

Source§

type Output = AreaPerMass<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for InverseMomentOfInertia<T>
where T: NumLike,

Dividing a InverseMomentOfInertia by a InverseArea returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for InverseVolume<T>
where T: NumLike,

Dividing a InverseVolume by a InverseArea returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for MagneticFluxDensity<T>
where T: NumLike,

Dividing a MagneticFluxDensity by a InverseArea returns a value of type MagneticFlux

Source§

type Output = MagneticFlux<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for Pressure<T>
where T: NumLike,

Dividing a Pressure by a InverseArea returns a value of type Force

Source§

type Output = Force<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for f32
where T: NumLike + From<f32>,

Dividing a scalar value by a InverseArea unit value returns a value of type Area

Source§

type Output = Area<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for f64
where T: NumLike + From<f64>,

Dividing a scalar value by a InverseArea unit value returns a value of type Area

Source§

type Output = Area<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for i32
where T: NumLike + From<i32>,

Dividing a scalar value by a InverseArea unit value returns a value of type Area

Source§

type Output = Area<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for i64
where T: NumLike + From<i64>,

Dividing a scalar value by a InverseArea unit value returns a value of type Area

Source§

type Output = Area<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseDistance<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseDistance returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseDistance<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseDistance<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseDistance returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseDistance<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseForce<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseForce returns a value of type Pressure

Source§

type Output = Pressure<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseForce<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseForce<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseForce returns a value of type Pressure

Source§

type Output = Pressure<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseForce<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseLuminousFlux<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseLuminousFlux returns a value of type Illuminance

Source§

type Output = Illuminance<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseLuminousFlux<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseLuminousFlux<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseLuminousFlux returns a value of type Illuminance

Source§

type Output = Illuminance<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseLuminousFlux<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseMagneticFlux<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseMagneticFlux returns a value of type MagneticFluxDensity

Source§

type Output = MagneticFluxDensity<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseMagneticFlux<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseMagneticFlux<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseMagneticFlux returns a value of type MagneticFluxDensity

Source§

type Output = MagneticFluxDensity<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseMagneticFlux<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseMass<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseMass returns a value of type AreaDensity

Source§

type Output = AreaDensity<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseMass<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseMass<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseMass returns a value of type AreaDensity

Source§

type Output = AreaDensity<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseMass<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseMomentOfInertia<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseMomentOfInertia returns a value of type Mass

Source§

type Output = Mass<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseMomentOfInertia<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseMomentOfInertia<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseMomentOfInertia returns a value of type Mass

Source§

type Output = Mass<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseMomentOfInertia<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseVolume<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseVolume returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseVolume<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&InverseVolume<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseVolume returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseVolume<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&MagneticFluxDensity<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a MagneticFluxDensity returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &MagneticFluxDensity<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&MagneticFluxDensity<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a MagneticFluxDensity returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &MagneticFluxDensity<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&Pressure<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a Pressure returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Pressure<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&Pressure<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a Pressure returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Pressure<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&T> for &InverseArea<T>
where T: NumLike,

Dividing a unit value by a scalar value returns a unit value

Source§

type Output = InverseArea<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &T) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<&T> for InverseArea<T>
where T: NumLike,

Dividing a unit value by a scalar value returns a unit value

Source§

type Output = InverseArea<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &T) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<AreaDensity<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a AreaDensity returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: AreaDensity<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<AreaDensity<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a AreaDensity returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: AreaDensity<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<Distance<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a Distance returns a value of type InverseVolume

Source§

type Output = InverseVolume<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Distance<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<Distance<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a Distance returns a value of type InverseVolume

Source§

type Output = InverseVolume<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Distance<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<Illuminance<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a Illuminance returns a value of type InverseLuminousFlux

Source§

type Output = InverseLuminousFlux<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Illuminance<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<Illuminance<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a Illuminance returns a value of type InverseLuminousFlux

Source§

type Output = InverseLuminousFlux<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Illuminance<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for &AreaDensity<T>
where T: NumLike,

Dividing a AreaDensity by a InverseArea returns a value of type Mass

Source§

type Output = Mass<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for &Distance<T>
where T: NumLike,

Dividing a Distance by a InverseArea returns a value of type Volume

Source§

type Output = Volume<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for &Illuminance<T>
where T: NumLike,

Dividing a Illuminance by a InverseArea returns a value of type LuminousFlux

Source§

type Output = LuminousFlux<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for &InverseDistance<T>
where T: NumLike,

Dividing a InverseDistance by a InverseArea returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for &InverseForce<T>
where T: NumLike,

Dividing a InverseForce by a InverseArea returns a value of type InversePressure

Source§

type Output = InversePressure<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for &InverseLuminousFlux<T>
where T: NumLike,

Dividing a InverseLuminousFlux by a InverseArea returns a value of type AreaPerLumen

Source§

type Output = AreaPerLumen<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for &InverseMagneticFlux<T>
where T: NumLike,

Dividing a InverseMagneticFlux by a InverseArea returns a value of type InverseMagneticFluxDensity

Source§

type Output = InverseMagneticFluxDensity<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for &InverseMass<T>
where T: NumLike,

Dividing a InverseMass by a InverseArea returns a value of type AreaPerMass

Source§

type Output = AreaPerMass<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for &InverseMomentOfInertia<T>
where T: NumLike,

Dividing a InverseMomentOfInertia by a InverseArea returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for &InverseVolume<T>
where T: NumLike,

Dividing a InverseVolume by a InverseArea returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for &MagneticFluxDensity<T>
where T: NumLike,

Dividing a MagneticFluxDensity by a InverseArea returns a value of type MagneticFlux

Source§

type Output = MagneticFlux<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for &Pressure<T>
where T: NumLike,

Dividing a Pressure by a InverseArea returns a value of type Force

Source§

type Output = Force<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for &f32
where T: NumLike + From<f32>,

Dividing a scalar value by a InverseArea unit value returns a value of type Area

Source§

type Output = Area<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for &f64
where T: NumLike + From<f64>,

Dividing a scalar value by a InverseArea unit value returns a value of type Area

Source§

type Output = Area<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for &i32
where T: NumLike + From<i32>,

Dividing a scalar value by a InverseArea unit value returns a value of type Area

Source§

type Output = Area<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for &i64
where T: NumLike + From<i64>,

Dividing a scalar value by a InverseArea unit value returns a value of type Area

Source§

type Output = Area<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for AreaDensity<T>
where T: NumLike,

Dividing a AreaDensity by a InverseArea returns a value of type Mass

Source§

type Output = Mass<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for Distance<T>
where T: NumLike,

Dividing a Distance by a InverseArea returns a value of type Volume

Source§

type Output = Volume<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for Illuminance<T>
where T: NumLike,

Dividing a Illuminance by a InverseArea returns a value of type LuminousFlux

Source§

type Output = LuminousFlux<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for InverseDistance<T>
where T: NumLike,

Dividing a InverseDistance by a InverseArea returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for InverseForce<T>
where T: NumLike,

Dividing a InverseForce by a InverseArea returns a value of type InversePressure

Source§

type Output = InversePressure<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for InverseLuminousFlux<T>
where T: NumLike,

Dividing a InverseLuminousFlux by a InverseArea returns a value of type AreaPerLumen

Source§

type Output = AreaPerLumen<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for InverseMagneticFlux<T>
where T: NumLike,

Dividing a InverseMagneticFlux by a InverseArea returns a value of type InverseMagneticFluxDensity

Source§

type Output = InverseMagneticFluxDensity<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for InverseMass<T>
where T: NumLike,

Dividing a InverseMass by a InverseArea returns a value of type AreaPerMass

Source§

type Output = AreaPerMass<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for InverseMomentOfInertia<T>
where T: NumLike,

Dividing a InverseMomentOfInertia by a InverseArea returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for InverseVolume<T>
where T: NumLike,

Dividing a InverseVolume by a InverseArea returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for MagneticFluxDensity<T>
where T: NumLike,

Dividing a MagneticFluxDensity by a InverseArea returns a value of type MagneticFlux

Source§

type Output = MagneticFlux<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for Pressure<T>
where T: NumLike,

Dividing a Pressure by a InverseArea returns a value of type Force

Source§

type Output = Force<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for f32
where T: NumLike + From<f32>,

Dividing a scalar value by a InverseArea unit value returns a value of type Area

Source§

type Output = Area<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for f64
where T: NumLike + From<f64>,

Dividing a scalar value by a InverseArea unit value returns a value of type Area

Source§

type Output = Area<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for i32
where T: NumLike + From<i32>,

Dividing a scalar value by a InverseArea unit value returns a value of type Area

Source§

type Output = Area<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for i64
where T: NumLike + From<i64>,

Dividing a scalar value by a InverseArea unit value returns a value of type Area

Source§

type Output = Area<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseArea<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseDistance<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseDistance returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseDistance<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseDistance<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseDistance returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseDistance<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseForce<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseForce returns a value of type Pressure

Source§

type Output = Pressure<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseForce<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseForce<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseForce returns a value of type Pressure

Source§

type Output = Pressure<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseForce<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseLuminousFlux<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseLuminousFlux returns a value of type Illuminance

Source§

type Output = Illuminance<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseLuminousFlux<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseLuminousFlux<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseLuminousFlux returns a value of type Illuminance

Source§

type Output = Illuminance<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseLuminousFlux<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseMagneticFlux<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseMagneticFlux returns a value of type MagneticFluxDensity

Source§

type Output = MagneticFluxDensity<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseMagneticFlux<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseMagneticFlux<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseMagneticFlux returns a value of type MagneticFluxDensity

Source§

type Output = MagneticFluxDensity<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseMagneticFlux<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseMass<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseMass returns a value of type AreaDensity

Source§

type Output = AreaDensity<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseMass<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseMass<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseMass returns a value of type AreaDensity

Source§

type Output = AreaDensity<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseMass<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseMomentOfInertia<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseMomentOfInertia returns a value of type Mass

Source§

type Output = Mass<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseMomentOfInertia<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseMomentOfInertia<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseMomentOfInertia returns a value of type Mass

Source§

type Output = Mass<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseMomentOfInertia<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseVolume<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseVolume returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseVolume<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<InverseVolume<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a InverseVolume returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseVolume<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<MagneticFluxDensity<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a MagneticFluxDensity returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: MagneticFluxDensity<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<MagneticFluxDensity<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a MagneticFluxDensity returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: MagneticFluxDensity<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<Pressure<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a Pressure returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Pressure<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T> Div<Pressure<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a Pressure returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Pressure<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<T: NumLike> Div<T> for &InverseArea<T>

Dividing a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)

Source§

type Output = InverseArea<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: T) -> Self::Output

Performs the / operation. Read more
Source§

impl<T: NumLike> Div<T> for InverseArea<T>

Dividing a unit value by a scalar value returns a unit value

Source§

type Output = InverseArea<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: T) -> Self::Output

Performs the / operation. Read more
Source§

impl<T: NumLike> Div for &InverseArea<T>

Dividing a unit value by another of the same type returns a scalar value (automatically clones the referenced data for convenient ergonomics)

Source§

type Output = T

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Self) -> Self::Output

Performs the / operation. Read more
Source§

impl<T: NumLike> Div for InverseArea<T>

Dividing a unit value by another of the same type returns a scalar value

Source§

type Output = T

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Self) -> Self::Output

Performs the / operation. Read more
Source§

impl<T: NumLike> DivAssign<T> for InverseArea<T>

Divides this unit value by a scalar

Source§

fn div_assign(&mut self, rhs: T)

Performs the /= operation. Read more
Source§

impl<T> Hash for InverseArea<T>
where T: NumLike + Hash,

This struct implements the Hash trait if it’s member data type also has the Hash trait

Source§

fn hash<H: Hasher>(&self, hasher: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<T> Mul<&AreaPerLumen<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a AreaPerLumen returns a value of type InverseLuminousFlux

Source§

type Output = InverseLuminousFlux<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &AreaPerLumen<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&AreaPerLumen<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a AreaPerLumen returns a value of type InverseLuminousFlux

Source§

type Output = InverseLuminousFlux<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &AreaPerLumen<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&AreaPerMass<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a AreaPerMass returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &AreaPerMass<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&AreaPerMass<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a AreaPerMass returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &AreaPerMass<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&Distance<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a Distance returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Distance<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&Distance<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a Distance returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Distance<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&Force<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a Force returns a value of type Pressure

Source§

type Output = Pressure<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Force<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&Force<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a Force returns a value of type Pressure

Source§

type Output = Pressure<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Force<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for &AreaPerLumen<T>
where T: NumLike,

Multiplying a AreaPerLumen by a InverseArea returns a value of type InverseLuminousFlux

Source§

type Output = InverseLuminousFlux<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for &AreaPerMass<T>
where T: NumLike,

Multiplying a AreaPerMass by a InverseArea returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for &Distance<T>
where T: NumLike,

Multiplying a Distance by a InverseArea returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for &Force<T>
where T: NumLike,

Multiplying a Force by a InverseArea returns a value of type Pressure

Source§

type Output = Pressure<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for &InverseDistance<T>
where T: NumLike,

Multiplying a InverseDistance by a InverseArea returns a value of type InverseVolume

Source§

type Output = InverseVolume<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for &InverseMagneticFluxDensity<T>
where T: NumLike,

Multiplying a InverseMagneticFluxDensity by a InverseArea returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for &InversePressure<T>
where T: NumLike,

Multiplying a InversePressure by a InverseArea returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for &LuminousFlux<T>
where T: NumLike,

Multiplying a LuminousFlux by a InverseArea returns a value of type Illuminance

Source§

type Output = Illuminance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for &MagneticFlux<T>
where T: NumLike,

Multiplying a MagneticFlux by a InverseArea returns a value of type MagneticFluxDensity

Source§

type Output = MagneticFluxDensity<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for &Mass<T>
where T: NumLike,

Multiplying a Mass by a InverseArea returns a value of type AreaDensity

Source§

type Output = AreaDensity<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for &MomentOfInertia<T>
where T: NumLike,

Multiplying a MomentOfInertia by a InverseArea returns a value of type Mass

Source§

type Output = Mass<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for &Volume<T>
where T: NumLike,

Multiplying a Volume by a InverseArea returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for AreaPerLumen<T>
where T: NumLike,

Multiplying a AreaPerLumen by a InverseArea returns a value of type InverseLuminousFlux

Source§

type Output = InverseLuminousFlux<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for AreaPerMass<T>
where T: NumLike,

Multiplying a AreaPerMass by a InverseArea returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for Distance<T>
where T: NumLike,

Multiplying a Distance by a InverseArea returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for Force<T>
where T: NumLike,

Multiplying a Force by a InverseArea returns a value of type Pressure

Source§

type Output = Pressure<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for InverseDistance<T>
where T: NumLike,

Multiplying a InverseDistance by a InverseArea returns a value of type InverseVolume

Source§

type Output = InverseVolume<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for InverseMagneticFluxDensity<T>
where T: NumLike,

Multiplying a InverseMagneticFluxDensity by a InverseArea returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for InversePressure<T>
where T: NumLike,

Multiplying a InversePressure by a InverseArea returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for LuminousFlux<T>
where T: NumLike,

Multiplying a LuminousFlux by a InverseArea returns a value of type Illuminance

Source§

type Output = Illuminance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for MagneticFlux<T>
where T: NumLike,

Multiplying a MagneticFlux by a InverseArea returns a value of type MagneticFluxDensity

Source§

type Output = MagneticFluxDensity<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for Mass<T>
where T: NumLike,

Multiplying a Mass by a InverseArea returns a value of type AreaDensity

Source§

type Output = AreaDensity<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for MomentOfInertia<T>
where T: NumLike,

Multiplying a MomentOfInertia by a InverseArea returns a value of type Mass

Source§

type Output = Mass<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for Volume<T>
where T: NumLike,

Multiplying a Volume by a InverseArea returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for f32
where T: NumLike + From<f32>,

Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for f64
where T: NumLike + From<f64>,

Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for i16
where T: NumLike + From<i16>,

Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for i32
where T: NumLike + From<i32>,

Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for i64
where T: NumLike + From<i64>,

Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for i8
where T: NumLike + From<i8>,

Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for u16
where T: NumLike + From<u16>,

Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for u32
where T: NumLike + From<u32>,

Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for u64
where T: NumLike + From<u64>,

Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseArea<T>> for u8
where T: NumLike + From<u8>,

Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseDistance<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a InverseDistance returns a value of type InverseVolume

Source§

type Output = InverseVolume<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseDistance<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseDistance<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a InverseDistance returns a value of type InverseVolume

Source§

type Output = InverseVolume<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseDistance<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseMagneticFluxDensity<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a InverseMagneticFluxDensity returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseMagneticFluxDensity<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseMagneticFluxDensity<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a InverseMagneticFluxDensity returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InverseMagneticFluxDensity<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InversePressure<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a InversePressure returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InversePressure<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&InversePressure<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a InversePressure returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &InversePressure<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&LuminousFlux<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a LuminousFlux returns a value of type Illuminance

Source§

type Output = Illuminance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &LuminousFlux<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&LuminousFlux<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a LuminousFlux returns a value of type Illuminance

Source§

type Output = Illuminance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &LuminousFlux<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&MagneticFlux<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a MagneticFlux returns a value of type MagneticFluxDensity

Source§

type Output = MagneticFluxDensity<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &MagneticFlux<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&MagneticFlux<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a MagneticFlux returns a value of type MagneticFluxDensity

Source§

type Output = MagneticFluxDensity<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &MagneticFlux<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&Mass<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a Mass returns a value of type AreaDensity

Source§

type Output = AreaDensity<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Mass<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&Mass<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a Mass returns a value of type AreaDensity

Source§

type Output = AreaDensity<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Mass<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&MomentOfInertia<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a MomentOfInertia returns a value of type Mass

Source§

type Output = Mass<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &MomentOfInertia<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&MomentOfInertia<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a MomentOfInertia returns a value of type Mass

Source§

type Output = Mass<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &MomentOfInertia<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&T> for &InverseArea<T>
where T: NumLike,

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &T) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&T> for InverseArea<T>
where T: NumLike,

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &T) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&Volume<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a Volume returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Volume<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<&Volume<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a Volume returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Volume<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<AreaPerLumen<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a AreaPerLumen returns a value of type InverseLuminousFlux

Source§

type Output = InverseLuminousFlux<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: AreaPerLumen<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<AreaPerLumen<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a AreaPerLumen returns a value of type InverseLuminousFlux

Source§

type Output = InverseLuminousFlux<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: AreaPerLumen<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<AreaPerMass<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a AreaPerMass returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: AreaPerMass<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<AreaPerMass<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a AreaPerMass returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: AreaPerMass<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<Distance<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a Distance returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Distance<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<Distance<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a Distance returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Distance<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<Force<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a Force returns a value of type Pressure

Source§

type Output = Pressure<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Force<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<Force<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a Force returns a value of type Pressure

Source§

type Output = Pressure<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Force<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for &AreaPerLumen<T>
where T: NumLike,

Multiplying a AreaPerLumen by a InverseArea returns a value of type InverseLuminousFlux

Source§

type Output = InverseLuminousFlux<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for &AreaPerMass<T>
where T: NumLike,

Multiplying a AreaPerMass by a InverseArea returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for &Distance<T>
where T: NumLike,

Multiplying a Distance by a InverseArea returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for &Force<T>
where T: NumLike,

Multiplying a Force by a InverseArea returns a value of type Pressure

Source§

type Output = Pressure<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for &InverseDistance<T>
where T: NumLike,

Multiplying a InverseDistance by a InverseArea returns a value of type InverseVolume

Source§

type Output = InverseVolume<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for &InverseMagneticFluxDensity<T>
where T: NumLike,

Multiplying a InverseMagneticFluxDensity by a InverseArea returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for &InversePressure<T>
where T: NumLike,

Multiplying a InversePressure by a InverseArea returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for &LuminousFlux<T>
where T: NumLike,

Multiplying a LuminousFlux by a InverseArea returns a value of type Illuminance

Source§

type Output = Illuminance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for &MagneticFlux<T>
where T: NumLike,

Multiplying a MagneticFlux by a InverseArea returns a value of type MagneticFluxDensity

Source§

type Output = MagneticFluxDensity<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for &Mass<T>
where T: NumLike,

Multiplying a Mass by a InverseArea returns a value of type AreaDensity

Source§

type Output = AreaDensity<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for &MomentOfInertia<T>
where T: NumLike,

Multiplying a MomentOfInertia by a InverseArea returns a value of type Mass

Source§

type Output = Mass<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for &Volume<T>
where T: NumLike,

Multiplying a Volume by a InverseArea returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for AreaPerLumen<T>
where T: NumLike,

Multiplying a AreaPerLumen by a InverseArea returns a value of type InverseLuminousFlux

Source§

type Output = InverseLuminousFlux<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for AreaPerMass<T>
where T: NumLike,

Multiplying a AreaPerMass by a InverseArea returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for Distance<T>
where T: NumLike,

Multiplying a Distance by a InverseArea returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for Force<T>
where T: NumLike,

Multiplying a Force by a InverseArea returns a value of type Pressure

Source§

type Output = Pressure<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for InverseDistance<T>
where T: NumLike,

Multiplying a InverseDistance by a InverseArea returns a value of type InverseVolume

Source§

type Output = InverseVolume<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for InverseMagneticFluxDensity<T>
where T: NumLike,

Multiplying a InverseMagneticFluxDensity by a InverseArea returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for InversePressure<T>
where T: NumLike,

Multiplying a InversePressure by a InverseArea returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for LuminousFlux<T>
where T: NumLike,

Multiplying a LuminousFlux by a InverseArea returns a value of type Illuminance

Source§

type Output = Illuminance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for MagneticFlux<T>
where T: NumLike,

Multiplying a MagneticFlux by a InverseArea returns a value of type MagneticFluxDensity

Source§

type Output = MagneticFluxDensity<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for Mass<T>
where T: NumLike,

Multiplying a Mass by a InverseArea returns a value of type AreaDensity

Source§

type Output = AreaDensity<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for MomentOfInertia<T>
where T: NumLike,

Multiplying a MomentOfInertia by a InverseArea returns a value of type Mass

Source§

type Output = Mass<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for Volume<T>
where T: NumLike,

Multiplying a Volume by a InverseArea returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for f32
where T: NumLike + From<f32>,

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for f64
where T: NumLike + From<f64>,

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for i16
where T: NumLike + From<i16>,

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for i32
where T: NumLike + From<i32>,

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for i64
where T: NumLike + From<i64>,

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for i8
where T: NumLike + From<i8>,

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for u16
where T: NumLike + From<u16>,

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for u32
where T: NumLike + From<u32>,

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for u64
where T: NumLike + From<u64>,

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for u8
where T: NumLike + From<u8>,

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseArea<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseDistance<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a InverseDistance returns a value of type InverseVolume

Source§

type Output = InverseVolume<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseDistance<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseDistance<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a InverseDistance returns a value of type InverseVolume

Source§

type Output = InverseVolume<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseDistance<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseMagneticFluxDensity<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a InverseMagneticFluxDensity returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseMagneticFluxDensity<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InverseMagneticFluxDensity<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a InverseMagneticFluxDensity returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InverseMagneticFluxDensity<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InversePressure<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a InversePressure returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InversePressure<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<InversePressure<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a InversePressure returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: InversePressure<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<LuminousFlux<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a LuminousFlux returns a value of type Illuminance

Source§

type Output = Illuminance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: LuminousFlux<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<LuminousFlux<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a LuminousFlux returns a value of type Illuminance

Source§

type Output = Illuminance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: LuminousFlux<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<MagneticFlux<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a MagneticFlux returns a value of type MagneticFluxDensity

Source§

type Output = MagneticFluxDensity<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: MagneticFlux<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<MagneticFlux<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a MagneticFlux returns a value of type MagneticFluxDensity

Source§

type Output = MagneticFluxDensity<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: MagneticFlux<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<Mass<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a Mass returns a value of type AreaDensity

Source§

type Output = AreaDensity<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Mass<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<Mass<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a Mass returns a value of type AreaDensity

Source§

type Output = AreaDensity<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Mass<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<MomentOfInertia<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a MomentOfInertia returns a value of type Mass

Source§

type Output = Mass<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: MomentOfInertia<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<MomentOfInertia<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a MomentOfInertia returns a value of type Mass

Source§

type Output = Mass<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: MomentOfInertia<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: NumLike> Mul<T> for &InverseArea<T>

Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: T) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: NumLike> Mul<T> for InverseArea<T>

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: T) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<Volume<T>> for &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a Volume returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Volume<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T> Mul<Volume<T>> for InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a Volume returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Volume<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: NumLike> MulAssign<T> for InverseArea<T>

Multiplies this unit value by a scalar

Source§

fn mul_assign(&mut self, rhs: T)

Performs the *= operation. Read more
Source§

impl<T: NumLike> Neg for &InverseArea<T>

Flips the sign of this unit value (automatically clones the referenced data for convenient ergonomics)

Source§

type Output = InverseArea<T>

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
Source§

impl<T: NumLike> Neg for InverseArea<T>

Flips the sign of this unit value

Source§

type Output = InverseArea<T>

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
Source§

impl<T> Ord for InverseArea<T>
where T: NumLike + Ord,

This struct implements the Ord trait if it’s member data type also has the Ord trait

Source§

fn cmp(&self, other: &Self) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 (const: unstable) · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<T> PartialEq for InverseArea<T>
where T: NumLike + PartialEq,

This struct implements the PartialEq trait if it’s member data type also has the PartialEq trait

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
Source§

fn ne(&self, other: &Self) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T> PartialOrd for InverseArea<T>
where T: NumLike + PartialOrd,

This struct implements the PartialOrd trait if it’s member data type also has the PartialOrd trait

Source§

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<T: NumLike> Sub for &InverseArea<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§

type Output = InverseArea<T>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: NumLike> Sub for InverseArea<T>

Subtracting two unit values of the same type returns a new unit value of the same type

Source§

type Output = InverseArea<T>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: NumLike> SubAssign for InverseArea<T>

Subtracts the given unit value from this unit value

Source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
Source§

impl<T> Copy for InverseArea<T>
where T: NumLike + Copy,

This struct implements the Copy marker trait if it’s member data type also has the Copy trait

Source§

impl<T> Eq for InverseArea<T>
where T: NumLike + PartialEq + Eq,

This struct implements the core::cmp::Eq trait if it’s member data type also has the core::cmp::Eq trait

Auto Trait Implementations§

§

impl<T> Freeze for InverseArea<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for InverseArea<T>
where T: RefUnwindSafe,

§

impl<T> Send for InverseArea<T>
where T: Send,

§

impl<T> Sync for InverseArea<T>
where T: Sync,

§

impl<T> Unpin for InverseArea<T>
where T: Unpin,

§

impl<T> UnsafeUnpin for InverseArea<T>
where T: UnsafeUnpin,

§

impl<T> UnwindSafe for InverseArea<T>
where T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.