Skip to main content

InverseForce

Struct InverseForce 

Source
pub struct InverseForce<T: NumLike> {
    pub per_N: T,
}
Expand description

The inverse of force unit type, defined as inverse newtons in SI units

Fields§

§per_N: T

The value of this Inverse force in inverse newtons

Implementations§

Source§

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

Source

pub fn unit_name() -> &'static str

Returns the standard unit name of inverse force: “inverse newtons”

Source

pub fn unit_symbol() -> &'static str

Returns the abbreviated name or symbol of inverse force: “1/N” for inverse newtons

Source

pub fn from_per_N(per_N: T) -> Self

Returns a new inverse force value from the given number of inverse newtons

§Arguments
  • per_N - Any number-like type, representing a quantity of inverse newtons
Source

pub fn to_per_N(&self) -> T

Returns a copy of this inverse force value in inverse newtons

Source

pub fn from_per_newton(per_newton: T) -> Self

Returns a new inverse force value from the given number of inverse newtons

§Arguments
  • per_newton - Any number-like type, representing a quantity of inverse newtons
Source

pub fn to_per_newton(&self) -> T

Returns a copy of this inverse force value in inverse newtons

Source§

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

Source

pub fn to_per_lb(&self) -> T

Returns a copy of this inverse force value in inverse pounds

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

Source

pub fn from_per_lb(per_lb: T) -> Self

Returns a new inverse force value from the given number of inverse pounds

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

§Arguments
  • per_lb - Any number-like type, representing a quantity of inverse pounds
Source

pub fn to_per_kgG(&self) -> T

Returns a copy of this inverse force value in inverse kilogram-force

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

Source

pub fn from_per_kgG(per_kgG: T) -> Self

Returns a new inverse force value from the given number of inverse kilogram-force

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

§Arguments
  • per_kgG - Any number-like type, representing a quantity of inverse kilogram-force
Source

pub fn to_per_mN(&self) -> T

Returns a copy of this inverse force value in inverse millinewtons

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

Source

pub fn from_per_mN(per_mN: T) -> Self

Returns a new inverse force value from the given number of inverse millinewtons

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

§Arguments
  • per_mN - Any number-like type, representing a quantity of inverse millinewtons
Source

pub fn to_per_uN(&self) -> T

Returns a copy of this inverse force value in inverse micronewtons

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

Source

pub fn from_per_uN(per_uN: T) -> Self

Returns a new inverse force value from the given number of inverse micronewtons

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

§Arguments
  • per_uN - Any number-like type, representing a quantity of inverse micronewtons
Source

pub fn to_per_nN(&self) -> T

Returns a copy of this inverse force value in inverse nanonewtons

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

Source

pub fn from_per_nN(per_nN: T) -> Self

Returns a new inverse force value from the given number of inverse nanonewtons

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

§Arguments
  • per_nN - Any number-like type, representing a quantity of inverse nanonewtons
Source

pub fn to_per_kN(&self) -> T

Returns a copy of this inverse force value in inverse kilonewtons

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

Source

pub fn from_per_kN(per_kN: T) -> Self

Returns a new inverse force value from the given number of inverse kilonewtons

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

§Arguments
  • per_kN - Any number-like type, representing a quantity of inverse kilonewtons
Source

pub fn to_per_MN(&self) -> T

Returns a copy of this inverse force value in inverse meganewtons

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

Source

pub fn from_per_MN(per_MN: T) -> Self

Returns a new inverse force value from the given number of inverse meganewtons

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

§Arguments
  • per_MN - Any number-like type, representing a quantity of inverse meganewtons
Source

pub fn to_per_GN(&self) -> T

Returns a copy of this inverse force value in inverse giganewtons

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

Source

pub fn from_per_GN(per_GN: T) -> Self

Returns a new inverse force value from the given number of inverse giganewtons

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

§Arguments
  • per_GN - Any number-like type, representing a quantity of inverse giganewtons

Trait Implementations§

Source§

impl<T: NumLike> Add for &InverseForce<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 = InverseForce<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 InverseForce<T>

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

Source§

type Output = InverseForce<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 InverseForce<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 InverseForce<T>

Source§

fn clone(&self) -> InverseForce<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 InverseForce<T>

Source§

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

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

impl<T> Display for InverseForce<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<&Distance<T>> for &InverseForce<T>
where T: NumLike,

Dividing a InverseForce by a Distance returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<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 InverseForce<T>
where T: NumLike,

Dividing a InverseForce by a Distance returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<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<&InverseAcceleration<T>> for &InverseForce<T>
where T: NumLike,

Dividing a InverseForce by a InverseAcceleration returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseForce by a InverseAcceleration returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &InverseAcceleration<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 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<&InverseEnergy<T>> for &InverseForce<T>
where T: NumLike,

Dividing a InverseForce by a InverseEnergy returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseForce by a InverseEnergy returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a Distance by a InverseForce returns a value of type Energy

Source§

type Output = Energy<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 &InverseAcceleration<T>
where T: NumLike,

Dividing a InverseAcceleration by a InverseForce returns a value of type Mass

Source§

type Output = Mass<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<&InverseForce<T>> for &InverseEnergy<T>
where T: NumLike,

Dividing a InverseEnergy by a InverseForce returns a value of type InverseDistance

Source§

type Output = InverseDistance<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 &InverseMass<T>
where T: NumLike,

Dividing a InverseMass by a InverseForce returns a value of type Acceleration

Source§

type Output = Acceleration<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 &InverseMomentum<T>
where T: NumLike,

Dividing a InverseMomentum by a InverseForce returns a value of type Frequency

Source§

type Output = Frequency<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 &InversePower<T>
where T: NumLike,

Dividing a InversePower by a InverseForce returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<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 &InversePressure<T>
where T: NumLike,

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

Source§

type Output = Area<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 &InverseTorque<T>
where T: NumLike,

Dividing a InverseTorque by a InverseForce returns a value of type InverseDistance

Source§

type Output = InverseDistance<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 &Time<T>
where T: NumLike,

Dividing a Time by a InverseForce returns a value of type Momentum

Source§

type Output = Momentum<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 &Velocity<T>
where T: NumLike,

Dividing a Velocity by a InverseForce returns a value of type Power

Source§

type Output = Power<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 &f32
where T: NumLike + From<f32>,

Dividing a scalar value by a InverseForce unit value returns a value of type Force

Source§

type Output = Force<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 &f64
where T: NumLike + From<f64>,

Dividing a scalar value by a InverseForce unit value returns a value of type Force

Source§

type Output = Force<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 &i32
where T: NumLike + From<i32>,

Dividing a scalar value by a InverseForce unit value returns a value of type Force

Source§

type Output = Force<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 &i64
where T: NumLike + From<i64>,

Dividing a scalar value by a InverseForce unit value returns a value of type Force

Source§

type Output = Force<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 Distance<T>
where T: NumLike,

Dividing a Distance by a InverseForce returns a value of type Energy

Source§

type Output = Energy<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 InverseAcceleration<T>
where T: NumLike,

Dividing a InverseAcceleration by a InverseForce returns a value of type Mass

Source§

type Output = Mass<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<&InverseForce<T>> for InverseEnergy<T>
where T: NumLike,

Dividing a InverseEnergy by a InverseForce returns a value of type InverseDistance

Source§

type Output = InverseDistance<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 InverseMass<T>
where T: NumLike,

Dividing a InverseMass by a InverseForce returns a value of type Acceleration

Source§

type Output = Acceleration<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 InverseMomentum<T>
where T: NumLike,

Dividing a InverseMomentum by a InverseForce returns a value of type Frequency

Source§

type Output = Frequency<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 InversePower<T>
where T: NumLike,

Dividing a InversePower by a InverseForce returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<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 InversePressure<T>
where T: NumLike,

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

Source§

type Output = Area<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 InverseTorque<T>
where T: NumLike,

Dividing a InverseTorque by a InverseForce returns a value of type InverseDistance

Source§

type Output = InverseDistance<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 Time<T>
where T: NumLike,

Dividing a Time by a InverseForce returns a value of type Momentum

Source§

type Output = Momentum<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 Velocity<T>
where T: NumLike,

Dividing a Velocity by a InverseForce returns a value of type Power

Source§

type Output = Power<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 f32
where T: NumLike + From<f32>,

Dividing a scalar value by a InverseForce unit value returns a value of type Force

Source§

type Output = Force<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 f64
where T: NumLike + From<f64>,

Dividing a scalar value by a InverseForce unit value returns a value of type Force

Source§

type Output = Force<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 i32
where T: NumLike + From<i32>,

Dividing a scalar value by a InverseForce unit value returns a value of type Force

Source§

type Output = Force<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 i64
where T: NumLike + From<i64>,

Dividing a scalar value by a InverseForce unit value returns a value of type Force

Source§

type Output = Force<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<&InverseMass<T>> for &InverseForce<T>
where T: NumLike,

Dividing a InverseForce by a InverseMass returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<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 InverseForce<T>
where T: NumLike,

Dividing a InverseForce by a InverseMass returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<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<&InverseMomentum<T>> for &InverseForce<T>
where T: NumLike,

Dividing a InverseForce by a InverseMomentum returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseForce by a InverseMomentum returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseForce by a InversePower returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseForce by a InversePower returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = InverseArea<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = InverseArea<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseForce by a InverseTorque returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseForce by a InverseTorque returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = InverseForce<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 InverseForce<T>
where T: NumLike,

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

Source§

type Output = InverseForce<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<&Time<T>> for &InverseForce<T>
where T: NumLike,

Dividing a InverseForce by a Time returns a value of type InverseMomentum

Source§

type Output = InverseMomentum<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseForce by a Time returns a value of type InverseMomentum

Source§

type Output = InverseMomentum<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseForce by a Velocity returns a value of type InversePower

Source§

type Output = InversePower<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseForce by a Velocity returns a value of type InversePower

Source§

type Output = InversePower<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseForce by a Distance returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<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 InverseForce<T>
where T: NumLike,

Dividing a InverseForce by a Distance returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<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<InverseAcceleration<T>> for &InverseForce<T>
where T: NumLike,

Dividing a InverseForce by a InverseAcceleration returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseForce by a InverseAcceleration returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: InverseAcceleration<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 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<InverseEnergy<T>> for &InverseForce<T>
where T: NumLike,

Dividing a InverseForce by a InverseEnergy returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseForce by a InverseEnergy returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a Distance by a InverseForce returns a value of type Energy

Source§

type Output = Energy<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 &InverseAcceleration<T>
where T: NumLike,

Dividing a InverseAcceleration by a InverseForce returns a value of type Mass

Source§

type Output = Mass<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<InverseForce<T>> for &InverseEnergy<T>
where T: NumLike,

Dividing a InverseEnergy by a InverseForce returns a value of type InverseDistance

Source§

type Output = InverseDistance<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 &InverseMass<T>
where T: NumLike,

Dividing a InverseMass by a InverseForce returns a value of type Acceleration

Source§

type Output = Acceleration<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 &InverseMomentum<T>
where T: NumLike,

Dividing a InverseMomentum by a InverseForce returns a value of type Frequency

Source§

type Output = Frequency<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 &InversePower<T>
where T: NumLike,

Dividing a InversePower by a InverseForce returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<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 &InversePressure<T>
where T: NumLike,

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

Source§

type Output = Area<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 &InverseTorque<T>
where T: NumLike,

Dividing a InverseTorque by a InverseForce returns a value of type InverseDistance

Source§

type Output = InverseDistance<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 &Time<T>
where T: NumLike,

Dividing a Time by a InverseForce returns a value of type Momentum

Source§

type Output = Momentum<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 &Velocity<T>
where T: NumLike,

Dividing a Velocity by a InverseForce returns a value of type Power

Source§

type Output = Power<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 &f32
where T: NumLike + From<f32>,

Dividing a scalar value by a InverseForce unit value returns a value of type Force

Source§

type Output = Force<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 &f64
where T: NumLike + From<f64>,

Dividing a scalar value by a InverseForce unit value returns a value of type Force

Source§

type Output = Force<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 &i32
where T: NumLike + From<i32>,

Dividing a scalar value by a InverseForce unit value returns a value of type Force

Source§

type Output = Force<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 &i64
where T: NumLike + From<i64>,

Dividing a scalar value by a InverseForce unit value returns a value of type Force

Source§

type Output = Force<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 Distance<T>
where T: NumLike,

Dividing a Distance by a InverseForce returns a value of type Energy

Source§

type Output = Energy<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 InverseAcceleration<T>
where T: NumLike,

Dividing a InverseAcceleration by a InverseForce returns a value of type Mass

Source§

type Output = Mass<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<InverseForce<T>> for InverseEnergy<T>
where T: NumLike,

Dividing a InverseEnergy by a InverseForce returns a value of type InverseDistance

Source§

type Output = InverseDistance<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 InverseMass<T>
where T: NumLike,

Dividing a InverseMass by a InverseForce returns a value of type Acceleration

Source§

type Output = Acceleration<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 InverseMomentum<T>
where T: NumLike,

Dividing a InverseMomentum by a InverseForce returns a value of type Frequency

Source§

type Output = Frequency<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 InversePower<T>
where T: NumLike,

Dividing a InversePower by a InverseForce returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<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 InversePressure<T>
where T: NumLike,

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

Source§

type Output = Area<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 InverseTorque<T>
where T: NumLike,

Dividing a InverseTorque by a InverseForce returns a value of type InverseDistance

Source§

type Output = InverseDistance<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 Time<T>
where T: NumLike,

Dividing a Time by a InverseForce returns a value of type Momentum

Source§

type Output = Momentum<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 Velocity<T>
where T: NumLike,

Dividing a Velocity by a InverseForce returns a value of type Power

Source§

type Output = Power<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 f32
where T: NumLike + From<f32>,

Dividing a scalar value by a InverseForce unit value returns a value of type Force

Source§

type Output = Force<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 f64
where T: NumLike + From<f64>,

Dividing a scalar value by a InverseForce unit value returns a value of type Force

Source§

type Output = Force<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 i32
where T: NumLike + From<i32>,

Dividing a scalar value by a InverseForce unit value returns a value of type Force

Source§

type Output = Force<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 i64
where T: NumLike + From<i64>,

Dividing a scalar value by a InverseForce unit value returns a value of type Force

Source§

type Output = Force<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<InverseMass<T>> for &InverseForce<T>
where T: NumLike,

Dividing a InverseForce by a InverseMass returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<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 InverseForce<T>
where T: NumLike,

Dividing a InverseForce by a InverseMass returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<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<InverseMomentum<T>> for &InverseForce<T>
where T: NumLike,

Dividing a InverseForce by a InverseMomentum returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseForce by a InverseMomentum returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseForce by a InversePower returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseForce by a InversePower returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = InverseArea<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = InverseArea<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseForce by a InverseTorque returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseForce by a InverseTorque returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = InverseForce<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 InverseForce<T>

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

Source§

type Output = InverseForce<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<Time<T>> for &InverseForce<T>
where T: NumLike,

Dividing a InverseForce by a Time returns a value of type InverseMomentum

Source§

type Output = InverseMomentum<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseForce by a Time returns a value of type InverseMomentum

Source§

type Output = InverseMomentum<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseForce by a Velocity returns a value of type InversePower

Source§

type Output = InversePower<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseForce by a Velocity returns a value of type InversePower

Source§

type Output = InversePower<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T: NumLike> Div for &InverseForce<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 InverseForce<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 InverseForce<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 InverseForce<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<&Acceleration<T>> for &InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Acceleration returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&Acceleration<T>> for InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Acceleration returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&Area<T>> for &InverseForce<T>
where T: NumLike,

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

Source§

type Output = InversePressure<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&Area<T>> for InverseForce<T>
where T: NumLike,

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

Source§

type Output = InversePressure<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&Energy<T>> for &InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Energy returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&Energy<T>> for InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Energy returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&Frequency<T>> for &InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Frequency returns a value of type InverseMomentum

Source§

type Output = InverseMomentum<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&Frequency<T>> for InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Frequency returns a value of type InverseMomentum

Source§

type Output = InverseMomentum<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseForce by a InverseDistance returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<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 InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a InverseDistance returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<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<&InverseForce<T>> for &Acceleration<T>
where T: NumLike,

Multiplying a Acceleration by a InverseForce returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<T>> for &Area<T>
where T: NumLike,

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

Source§

type Output = InversePressure<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<T>> for &Energy<T>
where T: NumLike,

Multiplying a Energy by a InverseForce returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<T>> for &Frequency<T>
where T: NumLike,

Multiplying a Frequency by a InverseForce returns a value of type InverseMomentum

Source§

type Output = InverseMomentum<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseDistance by a InverseForce returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Mass by a InverseForce returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<T>> for &Momentum<T>
where T: NumLike,

Multiplying a Momentum by a InverseForce returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<T>> for &Power<T>
where T: NumLike,

Multiplying a Power by a InverseForce returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<T>> for &Pressure<T>
where T: NumLike,

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

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<T>> for &TimePerDistance<T>
where T: NumLike,

Multiplying a TimePerDistance by a InverseForce returns a value of type InversePower

Source§

type Output = InversePower<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<T>> for &Torque<T>
where T: NumLike,

Multiplying a Torque by a InverseForce returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<T>> for Acceleration<T>
where T: NumLike,

Multiplying a Acceleration by a InverseForce returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<T>> for Area<T>
where T: NumLike,

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

Source§

type Output = InversePressure<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<T>> for Energy<T>
where T: NumLike,

Multiplying a Energy by a InverseForce returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<T>> for Frequency<T>
where T: NumLike,

Multiplying a Frequency by a InverseForce returns a value of type InverseMomentum

Source§

type Output = InverseMomentum<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseDistance by a InverseForce returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Mass by a InverseForce returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<T>> for Momentum<T>
where T: NumLike,

Multiplying a Momentum by a InverseForce returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<T>> for Power<T>
where T: NumLike,

Multiplying a Power by a InverseForce returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<T>> for Pressure<T>
where T: NumLike,

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

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<T>> for TimePerDistance<T>
where T: NumLike,

Multiplying a TimePerDistance by a InverseForce returns a value of type InversePower

Source§

type Output = InversePower<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<T>> for Torque<T>
where T: NumLike,

Multiplying a Torque by a InverseForce returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<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 = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<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 = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<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 = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<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 = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<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 = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<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 = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<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 = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<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 = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<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 = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&InverseForce<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 = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseForce by a Mass returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<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 InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Mass returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<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<&Momentum<T>> for &InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Momentum returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&Momentum<T>> for InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Momentum returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&Power<T>> for &InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Power returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&Power<T>> for InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Power returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&Pressure<T>> for &InverseForce<T>
where T: NumLike,

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

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&Pressure<T>> for InverseForce<T>
where T: NumLike,

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

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = InverseForce<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 InverseForce<T>
where T: NumLike,

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

Source§

type Output = InverseForce<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<&TimePerDistance<T>> for &InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a TimePerDistance returns a value of type InversePower

Source§

type Output = InversePower<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&TimePerDistance<T>> for InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a TimePerDistance returns a value of type InversePower

Source§

type Output = InversePower<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&Torque<T>> for &InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Torque returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<&Torque<T>> for InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Torque returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<Acceleration<T>> for &InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Acceleration returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<Acceleration<T>> for InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Acceleration returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<Area<T>> for &InverseForce<T>
where T: NumLike,

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

Source§

type Output = InversePressure<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<Area<T>> for InverseForce<T>
where T: NumLike,

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

Source§

type Output = InversePressure<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<Energy<T>> for &InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Energy returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<Energy<T>> for InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Energy returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<Frequency<T>> for &InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Frequency returns a value of type InverseMomentum

Source§

type Output = InverseMomentum<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<Frequency<T>> for InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Frequency returns a value of type InverseMomentum

Source§

type Output = InverseMomentum<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseForce by a InverseDistance returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<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 InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a InverseDistance returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<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<InverseForce<T>> for &Acceleration<T>
where T: NumLike,

Multiplying a Acceleration by a InverseForce returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<InverseForce<T>> for &Area<T>
where T: NumLike,

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

Source§

type Output = InversePressure<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<InverseForce<T>> for &Energy<T>
where T: NumLike,

Multiplying a Energy by a InverseForce returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<InverseForce<T>> for &Frequency<T>
where T: NumLike,

Multiplying a Frequency by a InverseForce returns a value of type InverseMomentum

Source§

type Output = InverseMomentum<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseDistance by a InverseForce returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Mass by a InverseForce returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<InverseForce<T>> for &Momentum<T>
where T: NumLike,

Multiplying a Momentum by a InverseForce returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<InverseForce<T>> for &Power<T>
where T: NumLike,

Multiplying a Power by a InverseForce returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<InverseForce<T>> for &Pressure<T>
where T: NumLike,

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

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<InverseForce<T>> for &TimePerDistance<T>
where T: NumLike,

Multiplying a TimePerDistance by a InverseForce returns a value of type InversePower

Source§

type Output = InversePower<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<InverseForce<T>> for &Torque<T>
where T: NumLike,

Multiplying a Torque by a InverseForce returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<InverseForce<T>> for Acceleration<T>
where T: NumLike,

Multiplying a Acceleration by a InverseForce returns a value of type InverseMass

Source§

type Output = InverseMass<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<InverseForce<T>> for Area<T>
where T: NumLike,

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

Source§

type Output = InversePressure<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<InverseForce<T>> for Energy<T>
where T: NumLike,

Multiplying a Energy by a InverseForce returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<InverseForce<T>> for Frequency<T>
where T: NumLike,

Multiplying a Frequency by a InverseForce returns a value of type InverseMomentum

Source§

type Output = InverseMomentum<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseDistance by a InverseForce returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Mass by a InverseForce returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<InverseForce<T>> for Momentum<T>
where T: NumLike,

Multiplying a Momentum by a InverseForce returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<InverseForce<T>> for Power<T>
where T: NumLike,

Multiplying a Power by a InverseForce returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<InverseForce<T>> for Pressure<T>
where T: NumLike,

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

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<InverseForce<T>> for TimePerDistance<T>
where T: NumLike,

Multiplying a TimePerDistance by a InverseForce returns a value of type InversePower

Source§

type Output = InversePower<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<InverseForce<T>> for Torque<T>
where T: NumLike,

Multiplying a Torque by a InverseForce returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseForce by a Mass returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<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 InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Mass returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<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<Momentum<T>> for &InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Momentum returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<Momentum<T>> for InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Momentum returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<Power<T>> for &InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Power returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<Power<T>> for InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Power returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<Pressure<T>> for &InverseForce<T>
where T: NumLike,

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

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<Pressure<T>> for InverseForce<T>
where T: NumLike,

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

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = InverseForce<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 InverseForce<T>

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

Source§

type Output = InverseForce<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<TimePerDistance<T>> for &InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a TimePerDistance returns a value of type InversePower

Source§

type Output = InversePower<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<TimePerDistance<T>> for InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a TimePerDistance returns a value of type InversePower

Source§

type Output = InversePower<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<Torque<T>> for &InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Torque returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<Torque<T>> for InverseForce<T>
where T: NumLike,

Multiplying a InverseForce by a Torque returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T: NumLike> MulAssign<T> for InverseForce<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 &InverseForce<T>

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

Source§

type Output = InverseForce<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 InverseForce<T>

Flips the sign of this unit value

Source§

type Output = InverseForce<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 InverseForce<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 InverseForce<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 InverseForce<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 &InverseForce<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 = InverseForce<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 InverseForce<T>

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

Source§

type Output = InverseForce<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 InverseForce<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 InverseForce<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 InverseForce<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 InverseForce<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for InverseForce<T>
where T: RefUnwindSafe,

§

impl<T> Send for InverseForce<T>
where T: Send,

§

impl<T> Sync for InverseForce<T>
where T: Sync,

§

impl<T> Unpin for InverseForce<T>
where T: Unpin,

§

impl<T> UnsafeUnpin for InverseForce<T>
where T: UnsafeUnpin,

§

impl<T> UnwindSafe for InverseForce<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.