pub struct Force<T: NumLike> {
pub N: T,
}Expand description
The force unit type, defined as newtons in SI units
Fields§
§N: TThe value of this Force in newtons
Implementations§
Source§impl<T> Force<T>where
T: NumLike,
impl<T> Force<T>where
T: NumLike,
Sourcepub fn unit_symbol() -> &'static str
pub fn unit_symbol() -> &'static str
Returns the abbreviated name or symbol of force: “N” for newtons
Sourcepub fn from_N(N: T) -> Self
pub fn from_N(N: T) -> Self
Returns a new force value from the given number of newtons
§Arguments
N- Any number-like type, representing a quantity of newtons
Sourcepub fn from_newtons(newtons: T) -> Self
pub fn from_newtons(newtons: T) -> Self
Returns a new force value from the given number of newtons
§Arguments
newtons- Any number-like type, representing a quantity of newtons
Sourcepub fn to_newtons(&self) -> T
pub fn to_newtons(&self) -> T
Returns a copy of this force value in newtons
Source§impl<T> Force<T>
impl<T> Force<T>
Sourcepub fn to_lb(&self) -> T
pub fn to_lb(&self) -> T
Returns a copy of this force value in pounds
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_lb(lb: T) -> Self
pub fn from_lb(lb: T) -> Self
Returns a new force value from the given number of pounds
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
lb- Any number-like type, representing a quantity of pounds
Sourcepub fn to_kgG(&self) -> T
pub fn to_kgG(&self) -> T
Returns a copy of this force value in kilogram-force
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_kgG(kgG: T) -> Self
pub fn from_kgG(kgG: T) -> Self
Returns a new force value from the given number of kilogram-force
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
kgG- Any number-like type, representing a quantity of kilogram-force
Sourcepub fn to_mN(&self) -> T
pub fn to_mN(&self) -> T
Returns a copy of this force value in millinewtons
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_mN(mN: T) -> Self
pub fn from_mN(mN: T) -> Self
Returns a new force value from the given number of millinewtons
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
mN- Any number-like type, representing a quantity of millinewtons
Sourcepub fn to_uN(&self) -> T
pub fn to_uN(&self) -> T
Returns a copy of this force value in micronewtons
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_uN(uN: T) -> Self
pub fn from_uN(uN: T) -> Self
Returns a new force value from the given number of micronewtons
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
uN- Any number-like type, representing a quantity of micronewtons
Sourcepub fn to_nN(&self) -> T
pub fn to_nN(&self) -> T
Returns a copy of this force value in nanonewtons
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_nN(nN: T) -> Self
pub fn from_nN(nN: T) -> Self
Returns a new force value from the given number of nanonewtons
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
nN- Any number-like type, representing a quantity of nanonewtons
Sourcepub fn to_kN(&self) -> T
pub fn to_kN(&self) -> T
Returns a copy of this force value in kilonewtons
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_kN(kN: T) -> Self
pub fn from_kN(kN: T) -> Self
Returns a new force value from the given number of kilonewtons
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
kN- Any number-like type, representing a quantity of kilonewtons
Sourcepub fn to_MN(&self) -> T
pub fn to_MN(&self) -> T
Returns a copy of this force value in meganewtons
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_MN(MN: T) -> Self
pub fn from_MN(MN: T) -> Self
Returns a new force value from the given number of meganewtons
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
MN- Any number-like type, representing a quantity of meganewtons
Trait Implementations§
Source§impl<T: NumLike> Add for &Force<T>
Adding two unit values of the same type returns a new unit value of the same type (automatically clones the referenced data for convenient ergonomics)
impl<T: NumLike> Add for &Force<T>
Adding two unit values of the same type returns a new unit value of the same type (automatically clones the referenced data for convenient ergonomics)
Source§impl<T: NumLike> Add for Force<T>
Adding two unit values of the same type returns a new unit value of the same type
impl<T: NumLike> Add for Force<T>
Adding two unit values of the same type returns a new unit value of the same type
Source§impl<T: NumLike> AddAssign for Force<T>
Adds the given unit value to this unit value
impl<T: NumLike> AddAssign for Force<T>
Adds the given unit value to this unit value
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
+= operation. Read moreSource§impl<T> Div<&Acceleration<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Acceleration returns a value of type Mass
impl<T> Div<&Acceleration<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Acceleration returns a value of type Mass
Source§impl<T> Div<&Acceleration<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Acceleration returns a value of type Mass
impl<T> Div<&Acceleration<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Acceleration returns a value of type Mass
Source§impl<T> Div<&Area<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Area returns a value of type Pressure
impl<T> Div<&Area<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Area returns a value of type Pressure
Source§impl<T> Div<&Area<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Area returns a value of type Pressure
impl<T> Div<&Area<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Area returns a value of type Pressure
Source§impl<T> Div<&Energy<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Energy returns a value of type InverseDistance
impl<T> Div<&Energy<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Energy returns a value of type InverseDistance
Source§impl<T> Div<&Energy<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Energy returns a value of type InverseDistance
impl<T> Div<&Energy<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Energy returns a value of type InverseDistance
Source§impl<T> Div<&Force<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Force returns a value of type InverseMass
impl<T> Div<&Force<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Force returns a value of type InverseMass
Source§impl<T> Div<&Force<T>> for &Area<T>where
T: NumLike,
Dividing a Area by a Force returns a value of type InversePressure
impl<T> Div<&Force<T>> for &Area<T>where
T: NumLike,
Dividing a Area by a Force returns a value of type InversePressure
Source§impl<T> Div<&Force<T>> for &Energy<T>where
T: NumLike,
Dividing a Energy by a Force returns a value of type Distance
impl<T> Div<&Force<T>> for &Energy<T>where
T: NumLike,
Dividing a Energy by a Force returns a value of type Distance
Source§impl<T> Div<&Force<T>> for &Frequency<T>where
T: NumLike,
Dividing a Frequency by a Force returns a value of type InverseMomentum
impl<T> Div<&Force<T>> for &Frequency<T>where
T: NumLike,
Dividing a Frequency by a Force returns a value of type InverseMomentum
Source§impl<T> Div<&Force<T>> for &InverseDistance<T>where
T: NumLike,
Dividing a InverseDistance by a Force returns a value of type InverseEnergy
impl<T> Div<&Force<T>> for &InverseDistance<T>where
T: NumLike,
Dividing a InverseDistance by a Force returns a value of type InverseEnergy
Source§impl<T> Div<&Force<T>> for &Mass<T>where
T: NumLike,
Dividing a Mass by a Force returns a value of type InverseAcceleration
impl<T> Div<&Force<T>> for &Mass<T>where
T: NumLike,
Dividing a Mass by a Force returns a value of type InverseAcceleration
Source§impl<T> Div<&Force<T>> for &Momentum<T>where
T: NumLike,
Dividing a Momentum by a Force returns a value of type Time
impl<T> Div<&Force<T>> for &Momentum<T>where
T: NumLike,
Dividing a Momentum by a Force returns a value of type Time
Source§impl<T> Div<&Force<T>> for &Power<T>where
T: NumLike,
Dividing a Power by a Force returns a value of type Velocity
impl<T> Div<&Force<T>> for &Power<T>where
T: NumLike,
Dividing a Power by a Force returns a value of type Velocity
Source§impl<T> Div<&Force<T>> for &Pressure<T>where
T: NumLike,
Dividing a Pressure by a Force returns a value of type InverseArea
impl<T> Div<&Force<T>> for &Pressure<T>where
T: NumLike,
Dividing a Pressure by a Force returns a value of type InverseArea
Source§impl<T> Div<&Force<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Force returns a value of type InversePower
impl<T> Div<&Force<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Force returns a value of type InversePower
Source§impl<T> Div<&Force<T>> for &Torque<T>where
T: NumLike,
Dividing a Torque by a Force returns a value of type Distance
impl<T> Div<&Force<T>> for &Torque<T>where
T: NumLike,
Dividing a Torque by a Force returns a value of type Distance
Source§impl<T> Div<&Force<T>> for &f32
Dividing a scalar value by a Force unit value returns a value of type InverseForce
impl<T> Div<&Force<T>> for &f32
Dividing a scalar value by a Force unit value returns a value of type InverseForce
Source§impl<T> Div<&Force<T>> for &f64
Dividing a scalar value by a Force unit value returns a value of type InverseForce
impl<T> Div<&Force<T>> for &f64
Dividing a scalar value by a Force unit value returns a value of type InverseForce
Source§impl<T> Div<&Force<T>> for &i32
Dividing a scalar value by a Force unit value returns a value of type InverseForce
impl<T> Div<&Force<T>> for &i32
Dividing a scalar value by a Force unit value returns a value of type InverseForce
Source§impl<T> Div<&Force<T>> for &i64
Dividing a scalar value by a Force unit value returns a value of type InverseForce
impl<T> Div<&Force<T>> for &i64
Dividing a scalar value by a Force unit value returns a value of type InverseForce
Source§impl<T> Div<&Force<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Force returns a value of type InverseMass
impl<T> Div<&Force<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Force returns a value of type InverseMass
Source§impl<T> Div<&Force<T>> for Area<T>where
T: NumLike,
Dividing a Area by a Force returns a value of type InversePressure
impl<T> Div<&Force<T>> for Area<T>where
T: NumLike,
Dividing a Area by a Force returns a value of type InversePressure
Source§impl<T> Div<&Force<T>> for Energy<T>where
T: NumLike,
Dividing a Energy by a Force returns a value of type Distance
impl<T> Div<&Force<T>> for Energy<T>where
T: NumLike,
Dividing a Energy by a Force returns a value of type Distance
Source§impl<T> Div<&Force<T>> for Frequency<T>where
T: NumLike,
Dividing a Frequency by a Force returns a value of type InverseMomentum
impl<T> Div<&Force<T>> for Frequency<T>where
T: NumLike,
Dividing a Frequency by a Force returns a value of type InverseMomentum
Source§impl<T> Div<&Force<T>> for InverseDistance<T>where
T: NumLike,
Dividing a InverseDistance by a Force returns a value of type InverseEnergy
impl<T> Div<&Force<T>> for InverseDistance<T>where
T: NumLike,
Dividing a InverseDistance by a Force returns a value of type InverseEnergy
Source§impl<T> Div<&Force<T>> for Mass<T>where
T: NumLike,
Dividing a Mass by a Force returns a value of type InverseAcceleration
impl<T> Div<&Force<T>> for Mass<T>where
T: NumLike,
Dividing a Mass by a Force returns a value of type InverseAcceleration
Source§impl<T> Div<&Force<T>> for Momentum<T>where
T: NumLike,
Dividing a Momentum by a Force returns a value of type Time
impl<T> Div<&Force<T>> for Momentum<T>where
T: NumLike,
Dividing a Momentum by a Force returns a value of type Time
Source§impl<T> Div<&Force<T>> for Power<T>where
T: NumLike,
Dividing a Power by a Force returns a value of type Velocity
impl<T> Div<&Force<T>> for Power<T>where
T: NumLike,
Dividing a Power by a Force returns a value of type Velocity
Source§impl<T> Div<&Force<T>> for Pressure<T>where
T: NumLike,
Dividing a Pressure by a Force returns a value of type InverseArea
impl<T> Div<&Force<T>> for Pressure<T>where
T: NumLike,
Dividing a Pressure by a Force returns a value of type InverseArea
Source§impl<T> Div<&Force<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Force returns a value of type InversePower
impl<T> Div<&Force<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Force returns a value of type InversePower
Source§impl<T> Div<&Force<T>> for Torque<T>where
T: NumLike,
Dividing a Torque by a Force returns a value of type Distance
impl<T> Div<&Force<T>> for Torque<T>where
T: NumLike,
Dividing a Torque by a Force returns a value of type Distance
Source§impl<T> Div<&Force<T>> for f32
Dividing a scalar value by a Force unit value returns a value of type InverseForce
impl<T> Div<&Force<T>> for f32
Dividing a scalar value by a Force unit value returns a value of type InverseForce
Source§impl<T> Div<&Force<T>> for f64
Dividing a scalar value by a Force unit value returns a value of type InverseForce
impl<T> Div<&Force<T>> for f64
Dividing a scalar value by a Force unit value returns a value of type InverseForce
Source§impl<T> Div<&Force<T>> for i32
Dividing a scalar value by a Force unit value returns a value of type InverseForce
impl<T> Div<&Force<T>> for i32
Dividing a scalar value by a Force unit value returns a value of type InverseForce
Source§impl<T> Div<&Force<T>> for i64
Dividing a scalar value by a Force unit value returns a value of type InverseForce
impl<T> Div<&Force<T>> for i64
Dividing a scalar value by a Force unit value returns a value of type InverseForce
Source§impl<T> Div<&Frequency<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Frequency returns a value of type Momentum
impl<T> Div<&Frequency<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Frequency returns a value of type Momentum
Source§impl<T> Div<&Frequency<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Frequency returns a value of type Momentum
impl<T> Div<&Frequency<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Frequency returns a value of type Momentum
Source§impl<T> Div<&InverseDistance<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a InverseDistance returns a value of type Energy
impl<T> Div<&InverseDistance<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a InverseDistance returns a value of type Energy
Source§impl<T> Div<&InverseDistance<T>> for Force<T>where
T: NumLike,
Dividing a Force by a InverseDistance returns a value of type Energy
impl<T> Div<&InverseDistance<T>> for Force<T>where
T: NumLike,
Dividing a Force by a InverseDistance returns a value of type Energy
Source§impl<T> Div<&Mass<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Mass returns a value of type Acceleration
impl<T> Div<&Mass<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Mass returns a value of type Acceleration
Source§impl<T> Div<&Mass<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Mass returns a value of type Acceleration
impl<T> Div<&Mass<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Mass returns a value of type Acceleration
Source§impl<T> Div<&Momentum<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Momentum returns a value of type Frequency
impl<T> Div<&Momentum<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Momentum returns a value of type Frequency
Source§impl<T> Div<&Momentum<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Momentum returns a value of type Frequency
impl<T> Div<&Momentum<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Momentum returns a value of type Frequency
Source§impl<T> Div<&Power<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Power returns a value of type TimePerDistance
impl<T> Div<&Power<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Power returns a value of type TimePerDistance
Source§impl<T> Div<&Power<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Power returns a value of type TimePerDistance
impl<T> Div<&Power<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Power returns a value of type TimePerDistance
Source§impl<T> Div<&Pressure<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Pressure returns a value of type Area
impl<T> Div<&Pressure<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Pressure returns a value of type Area
Source§impl<T> Div<&Pressure<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Pressure returns a value of type Area
impl<T> Div<&Pressure<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Pressure returns a value of type Area
Source§impl<T> Div<&T> for &Force<T>where
T: NumLike,
Dividing a unit value by a scalar value returns a unit value
impl<T> Div<&T> for &Force<T>where
T: NumLike,
Dividing a unit value by a scalar value returns a unit value
Source§impl<T> Div<&T> for Force<T>where
T: NumLike,
Dividing a unit value by a scalar value returns a unit value
impl<T> Div<&T> for Force<T>where
T: NumLike,
Dividing a unit value by a scalar value returns a unit value
Source§impl<T> Div<&TimePerDistance<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a TimePerDistance returns a value of type Power
impl<T> Div<&TimePerDistance<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a TimePerDistance returns a value of type Power
Source§impl<T> Div<&TimePerDistance<T>> for Force<T>where
T: NumLike,
Dividing a Force by a TimePerDistance returns a value of type Power
impl<T> Div<&TimePerDistance<T>> for Force<T>where
T: NumLike,
Dividing a Force by a TimePerDistance returns a value of type Power
Source§impl<T> Div<&Torque<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Torque returns a value of type InverseDistance
impl<T> Div<&Torque<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Torque returns a value of type InverseDistance
Source§impl<T> Div<&Torque<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Torque returns a value of type InverseDistance
impl<T> Div<&Torque<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Torque returns a value of type InverseDistance
Source§impl<T> Div<Acceleration<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Acceleration returns a value of type Mass
impl<T> Div<Acceleration<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Acceleration returns a value of type Mass
Source§impl<T> Div<Acceleration<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Acceleration returns a value of type Mass
impl<T> Div<Acceleration<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Acceleration returns a value of type Mass
Source§impl<T> Div<Area<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Area returns a value of type Pressure
impl<T> Div<Area<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Area returns a value of type Pressure
Source§impl<T> Div<Area<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Area returns a value of type Pressure
impl<T> Div<Area<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Area returns a value of type Pressure
Source§impl<T> Div<Energy<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Energy returns a value of type InverseDistance
impl<T> Div<Energy<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Energy returns a value of type InverseDistance
Source§impl<T> Div<Energy<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Energy returns a value of type InverseDistance
impl<T> Div<Energy<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Energy returns a value of type InverseDistance
Source§impl<T> Div<Force<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Force returns a value of type InverseMass
impl<T> Div<Force<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Force returns a value of type InverseMass
Source§impl<T> Div<Force<T>> for &Area<T>where
T: NumLike,
Dividing a Area by a Force returns a value of type InversePressure
impl<T> Div<Force<T>> for &Area<T>where
T: NumLike,
Dividing a Area by a Force returns a value of type InversePressure
Source§impl<T> Div<Force<T>> for &Energy<T>where
T: NumLike,
Dividing a Energy by a Force returns a value of type Distance
impl<T> Div<Force<T>> for &Energy<T>where
T: NumLike,
Dividing a Energy by a Force returns a value of type Distance
Source§impl<T> Div<Force<T>> for &Frequency<T>where
T: NumLike,
Dividing a Frequency by a Force returns a value of type InverseMomentum
impl<T> Div<Force<T>> for &Frequency<T>where
T: NumLike,
Dividing a Frequency by a Force returns a value of type InverseMomentum
Source§impl<T> Div<Force<T>> for &InverseDistance<T>where
T: NumLike,
Dividing a InverseDistance by a Force returns a value of type InverseEnergy
impl<T> Div<Force<T>> for &InverseDistance<T>where
T: NumLike,
Dividing a InverseDistance by a Force returns a value of type InverseEnergy
Source§impl<T> Div<Force<T>> for &Mass<T>where
T: NumLike,
Dividing a Mass by a Force returns a value of type InverseAcceleration
impl<T> Div<Force<T>> for &Mass<T>where
T: NumLike,
Dividing a Mass by a Force returns a value of type InverseAcceleration
Source§impl<T> Div<Force<T>> for &Momentum<T>where
T: NumLike,
Dividing a Momentum by a Force returns a value of type Time
impl<T> Div<Force<T>> for &Momentum<T>where
T: NumLike,
Dividing a Momentum by a Force returns a value of type Time
Source§impl<T> Div<Force<T>> for &Power<T>where
T: NumLike,
Dividing a Power by a Force returns a value of type Velocity
impl<T> Div<Force<T>> for &Power<T>where
T: NumLike,
Dividing a Power by a Force returns a value of type Velocity
Source§impl<T> Div<Force<T>> for &Pressure<T>where
T: NumLike,
Dividing a Pressure by a Force returns a value of type InverseArea
impl<T> Div<Force<T>> for &Pressure<T>where
T: NumLike,
Dividing a Pressure by a Force returns a value of type InverseArea
Source§impl<T> Div<Force<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Force returns a value of type InversePower
impl<T> Div<Force<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Force returns a value of type InversePower
Source§impl<T> Div<Force<T>> for &Torque<T>where
T: NumLike,
Dividing a Torque by a Force returns a value of type Distance
impl<T> Div<Force<T>> for &Torque<T>where
T: NumLike,
Dividing a Torque by a Force returns a value of type Distance
Source§impl<T> Div<Force<T>> for &f32
Dividing a scalar value by a Force unit value returns a value of type InverseForce
impl<T> Div<Force<T>> for &f32
Dividing a scalar value by a Force unit value returns a value of type InverseForce
Source§impl<T> Div<Force<T>> for &f64
Dividing a scalar value by a Force unit value returns a value of type InverseForce
impl<T> Div<Force<T>> for &f64
Dividing a scalar value by a Force unit value returns a value of type InverseForce
Source§impl<T> Div<Force<T>> for &i32
Dividing a scalar value by a Force unit value returns a value of type InverseForce
impl<T> Div<Force<T>> for &i32
Dividing a scalar value by a Force unit value returns a value of type InverseForce
Source§impl<T> Div<Force<T>> for &i64
Dividing a scalar value by a Force unit value returns a value of type InverseForce
impl<T> Div<Force<T>> for &i64
Dividing a scalar value by a Force unit value returns a value of type InverseForce
Source§impl<T> Div<Force<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Force returns a value of type InverseMass
impl<T> Div<Force<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Force returns a value of type InverseMass
Source§impl<T> Div<Force<T>> for Area<T>where
T: NumLike,
Dividing a Area by a Force returns a value of type InversePressure
impl<T> Div<Force<T>> for Area<T>where
T: NumLike,
Dividing a Area by a Force returns a value of type InversePressure
Source§impl<T> Div<Force<T>> for Energy<T>where
T: NumLike,
Dividing a Energy by a Force returns a value of type Distance
impl<T> Div<Force<T>> for Energy<T>where
T: NumLike,
Dividing a Energy by a Force returns a value of type Distance
Source§impl<T> Div<Force<T>> for Frequency<T>where
T: NumLike,
Dividing a Frequency by a Force returns a value of type InverseMomentum
impl<T> Div<Force<T>> for Frequency<T>where
T: NumLike,
Dividing a Frequency by a Force returns a value of type InverseMomentum
Source§impl<T> Div<Force<T>> for InverseDistance<T>where
T: NumLike,
Dividing a InverseDistance by a Force returns a value of type InverseEnergy
impl<T> Div<Force<T>> for InverseDistance<T>where
T: NumLike,
Dividing a InverseDistance by a Force returns a value of type InverseEnergy
Source§impl<T> Div<Force<T>> for Mass<T>where
T: NumLike,
Dividing a Mass by a Force returns a value of type InverseAcceleration
impl<T> Div<Force<T>> for Mass<T>where
T: NumLike,
Dividing a Mass by a Force returns a value of type InverseAcceleration
Source§impl<T> Div<Force<T>> for Momentum<T>where
T: NumLike,
Dividing a Momentum by a Force returns a value of type Time
impl<T> Div<Force<T>> for Momentum<T>where
T: NumLike,
Dividing a Momentum by a Force returns a value of type Time
Source§impl<T> Div<Force<T>> for Power<T>where
T: NumLike,
Dividing a Power by a Force returns a value of type Velocity
impl<T> Div<Force<T>> for Power<T>where
T: NumLike,
Dividing a Power by a Force returns a value of type Velocity
Source§impl<T> Div<Force<T>> for Pressure<T>where
T: NumLike,
Dividing a Pressure by a Force returns a value of type InverseArea
impl<T> Div<Force<T>> for Pressure<T>where
T: NumLike,
Dividing a Pressure by a Force returns a value of type InverseArea
Source§impl<T> Div<Force<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Force returns a value of type InversePower
impl<T> Div<Force<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Force returns a value of type InversePower
Source§impl<T> Div<Force<T>> for Torque<T>where
T: NumLike,
Dividing a Torque by a Force returns a value of type Distance
impl<T> Div<Force<T>> for Torque<T>where
T: NumLike,
Dividing a Torque by a Force returns a value of type Distance
Source§impl<T> Div<Force<T>> for f32
Dividing a scalar value by a Force unit value returns a value of type InverseForce
impl<T> Div<Force<T>> for f32
Dividing a scalar value by a Force unit value returns a value of type InverseForce
Source§impl<T> Div<Force<T>> for f64
Dividing a scalar value by a Force unit value returns a value of type InverseForce
impl<T> Div<Force<T>> for f64
Dividing a scalar value by a Force unit value returns a value of type InverseForce
Source§impl<T> Div<Force<T>> for i32
Dividing a scalar value by a Force unit value returns a value of type InverseForce
impl<T> Div<Force<T>> for i32
Dividing a scalar value by a Force unit value returns a value of type InverseForce
Source§impl<T> Div<Force<T>> for i64
Dividing a scalar value by a Force unit value returns a value of type InverseForce
impl<T> Div<Force<T>> for i64
Dividing a scalar value by a Force unit value returns a value of type InverseForce
Source§impl<T> Div<Frequency<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Frequency returns a value of type Momentum
impl<T> Div<Frequency<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Frequency returns a value of type Momentum
Source§impl<T> Div<Frequency<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Frequency returns a value of type Momentum
impl<T> Div<Frequency<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Frequency returns a value of type Momentum
Source§impl<T> Div<InverseDistance<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a InverseDistance returns a value of type Energy
impl<T> Div<InverseDistance<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a InverseDistance returns a value of type Energy
Source§impl<T> Div<InverseDistance<T>> for Force<T>where
T: NumLike,
Dividing a Force by a InverseDistance returns a value of type Energy
impl<T> Div<InverseDistance<T>> for Force<T>where
T: NumLike,
Dividing a Force by a InverseDistance returns a value of type Energy
Source§impl<T> Div<Mass<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Mass returns a value of type Acceleration
impl<T> Div<Mass<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Mass returns a value of type Acceleration
Source§impl<T> Div<Mass<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Mass returns a value of type Acceleration
impl<T> Div<Mass<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Mass returns a value of type Acceleration
Source§impl<T> Div<Momentum<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Momentum returns a value of type Frequency
impl<T> Div<Momentum<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Momentum returns a value of type Frequency
Source§impl<T> Div<Momentum<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Momentum returns a value of type Frequency
impl<T> Div<Momentum<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Momentum returns a value of type Frequency
Source§impl<T> Div<Power<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Power returns a value of type TimePerDistance
impl<T> Div<Power<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Power returns a value of type TimePerDistance
Source§impl<T> Div<Power<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Power returns a value of type TimePerDistance
impl<T> Div<Power<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Power returns a value of type TimePerDistance
Source§impl<T> Div<Pressure<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Pressure returns a value of type Area
impl<T> Div<Pressure<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Pressure returns a value of type Area
Source§impl<T> Div<Pressure<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Pressure returns a value of type Area
impl<T> Div<Pressure<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Pressure returns a value of type Area
Source§impl<T: NumLike> Div<T> for &Force<T>
Dividing a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T: NumLike> Div<T> for &Force<T>
Dividing a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T: NumLike> Div<T> for Force<T>
Dividing a unit value by a scalar value returns a unit value
impl<T: NumLike> Div<T> for Force<T>
Dividing a unit value by a scalar value returns a unit value
Source§impl<T> Div<TimePerDistance<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a TimePerDistance returns a value of type Power
impl<T> Div<TimePerDistance<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a TimePerDistance returns a value of type Power
Source§impl<T> Div<TimePerDistance<T>> for Force<T>where
T: NumLike,
Dividing a Force by a TimePerDistance returns a value of type Power
impl<T> Div<TimePerDistance<T>> for Force<T>where
T: NumLike,
Dividing a Force by a TimePerDistance returns a value of type Power
Source§impl<T> Div<Torque<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Torque returns a value of type InverseDistance
impl<T> Div<Torque<T>> for &Force<T>where
T: NumLike,
Dividing a Force by a Torque returns a value of type InverseDistance
Source§impl<T> Div<Torque<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Torque returns a value of type InverseDistance
impl<T> Div<Torque<T>> for Force<T>where
T: NumLike,
Dividing a Force by a Torque returns a value of type InverseDistance
Source§impl<T: NumLike> Div for &Force<T>
Dividing a unit value by another of the same type returns a scalar value (automatically clones the referenced data for convenient ergonomics)
impl<T: NumLike> Div for &Force<T>
Dividing a unit value by another of the same type returns a scalar value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T: NumLike> Div for Force<T>
Dividing a unit value by another of the same type returns a scalar value
impl<T: NumLike> Div for Force<T>
Dividing a unit value by another of the same type returns a scalar value
Source§impl<T: NumLike> DivAssign<T> for Force<T>
Divides this unit value by a scalar
impl<T: NumLike> DivAssign<T> for Force<T>
Divides this unit value by a scalar
Source§fn div_assign(&mut self, rhs: T)
fn div_assign(&mut self, rhs: T)
/= operation. Read moreSource§impl<T> Hash for Force<T>
This struct implements the Hash trait if it’s member data type also has the Hash trait
impl<T> Hash for Force<T>
This struct implements the Hash trait if it’s member data type also has the Hash trait
Source§impl<T> Mul<&Distance<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a Distance returns a value of type Energy
impl<T> Mul<&Distance<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a Distance returns a value of type Energy
Source§impl<T> Mul<&Distance<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a Distance returns a value of type Energy
impl<T> Mul<&Distance<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a Distance returns a value of type Energy
Source§impl<T> Mul<&Force<T>> for &Distance<T>where
T: NumLike,
Multiplying a Distance by a Force returns a value of type Energy
impl<T> Mul<&Force<T>> for &Distance<T>where
T: NumLike,
Multiplying a Distance by a Force returns a value of type Energy
Source§impl<T> Mul<&Force<T>> for &InverseAcceleration<T>where
T: NumLike,
Multiplying a InverseAcceleration by a Force returns a value of type Mass
impl<T> Mul<&Force<T>> for &InverseAcceleration<T>where
T: NumLike,
Multiplying a InverseAcceleration by a Force returns a value of type Mass
Source§impl<T> Mul<&Force<T>> for &InverseArea<T>where
T: NumLike,
Multiplying a InverseArea by a Force returns a value of type Pressure
impl<T> Mul<&Force<T>> for &InverseArea<T>where
T: NumLike,
Multiplying a InverseArea by a Force returns a value of type Pressure
Source§impl<T> Mul<&Force<T>> for &InverseEnergy<T>where
T: NumLike,
Multiplying a InverseEnergy by a Force returns a value of type InverseDistance
impl<T> Mul<&Force<T>> for &InverseEnergy<T>where
T: NumLike,
Multiplying a InverseEnergy by a Force returns a value of type InverseDistance
Source§impl<T> Mul<&Force<T>> for &InverseMass<T>where
T: NumLike,
Multiplying a InverseMass by a Force returns a value of type Acceleration
impl<T> Mul<&Force<T>> for &InverseMass<T>where
T: NumLike,
Multiplying a InverseMass by a Force returns a value of type Acceleration
Source§impl<T> Mul<&Force<T>> for &InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a Force returns a value of type Frequency
impl<T> Mul<&Force<T>> for &InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a Force returns a value of type Frequency
Source§impl<T> Mul<&Force<T>> for &InversePower<T>where
T: NumLike,
Multiplying a InversePower by a Force returns a value of type TimePerDistance
impl<T> Mul<&Force<T>> for &InversePower<T>where
T: NumLike,
Multiplying a InversePower by a Force returns a value of type TimePerDistance
Source§impl<T> Mul<&Force<T>> for &InversePressure<T>where
T: NumLike,
Multiplying a InversePressure by a Force returns a value of type Area
impl<T> Mul<&Force<T>> for &InversePressure<T>where
T: NumLike,
Multiplying a InversePressure by a Force returns a value of type Area
Source§impl<T> Mul<&Force<T>> for &InverseTorque<T>where
T: NumLike,
Multiplying a InverseTorque by a Force returns a value of type InverseDistance
impl<T> Mul<&Force<T>> for &InverseTorque<T>where
T: NumLike,
Multiplying a InverseTorque by a Force returns a value of type InverseDistance
Source§impl<T> Mul<&Force<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Force returns a value of type Momentum
impl<T> Mul<&Force<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Force returns a value of type Momentum
Source§impl<T> Mul<&Force<T>> for &Velocity<T>where
T: NumLike,
Multiplying a Velocity by a Force returns a value of type Power
impl<T> Mul<&Force<T>> for &Velocity<T>where
T: NumLike,
Multiplying a Velocity by a Force returns a value of type Power
Source§impl<T> Mul<&Force<T>> for Distance<T>where
T: NumLike,
Multiplying a Distance by a Force returns a value of type Energy
impl<T> Mul<&Force<T>> for Distance<T>where
T: NumLike,
Multiplying a Distance by a Force returns a value of type Energy
Source§impl<T> Mul<&Force<T>> for InverseAcceleration<T>where
T: NumLike,
Multiplying a InverseAcceleration by a Force returns a value of type Mass
impl<T> Mul<&Force<T>> for InverseAcceleration<T>where
T: NumLike,
Multiplying a InverseAcceleration by a Force returns a value of type Mass
Source§impl<T> Mul<&Force<T>> for InverseArea<T>where
T: NumLike,
Multiplying a InverseArea by a Force returns a value of type Pressure
impl<T> Mul<&Force<T>> for InverseArea<T>where
T: NumLike,
Multiplying a InverseArea by a Force returns a value of type Pressure
Source§impl<T> Mul<&Force<T>> for InverseEnergy<T>where
T: NumLike,
Multiplying a InverseEnergy by a Force returns a value of type InverseDistance
impl<T> Mul<&Force<T>> for InverseEnergy<T>where
T: NumLike,
Multiplying a InverseEnergy by a Force returns a value of type InverseDistance
Source§impl<T> Mul<&Force<T>> for InverseMass<T>where
T: NumLike,
Multiplying a InverseMass by a Force returns a value of type Acceleration
impl<T> Mul<&Force<T>> for InverseMass<T>where
T: NumLike,
Multiplying a InverseMass by a Force returns a value of type Acceleration
Source§impl<T> Mul<&Force<T>> for InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a Force returns a value of type Frequency
impl<T> Mul<&Force<T>> for InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a Force returns a value of type Frequency
Source§impl<T> Mul<&Force<T>> for InversePower<T>where
T: NumLike,
Multiplying a InversePower by a Force returns a value of type TimePerDistance
impl<T> Mul<&Force<T>> for InversePower<T>where
T: NumLike,
Multiplying a InversePower by a Force returns a value of type TimePerDistance
Source§impl<T> Mul<&Force<T>> for InversePressure<T>where
T: NumLike,
Multiplying a InversePressure by a Force returns a value of type Area
impl<T> Mul<&Force<T>> for InversePressure<T>where
T: NumLike,
Multiplying a InversePressure by a Force returns a value of type Area
Source§impl<T> Mul<&Force<T>> for InverseTorque<T>where
T: NumLike,
Multiplying a InverseTorque by a Force returns a value of type InverseDistance
impl<T> Mul<&Force<T>> for InverseTorque<T>where
T: NumLike,
Multiplying a InverseTorque by a Force returns a value of type InverseDistance
Source§impl<T> Mul<&Force<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Force returns a value of type Momentum
impl<T> Mul<&Force<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Force returns a value of type Momentum
Source§impl<T> Mul<&Force<T>> for Velocity<T>where
T: NumLike,
Multiplying a Velocity by a Force returns a value of type Power
impl<T> Mul<&Force<T>> for Velocity<T>where
T: NumLike,
Multiplying a Velocity by a Force returns a value of type Power
Source§impl<T> Mul<&Force<T>> for f32
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T> Mul<&Force<T>> for f32
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T> Mul<&Force<T>> for f64
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T> Mul<&Force<T>> for f64
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T> Mul<&Force<T>> for i16
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T> Mul<&Force<T>> for i16
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T> Mul<&Force<T>> for i32
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T> Mul<&Force<T>> for i32
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T> Mul<&Force<T>> for i64
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T> Mul<&Force<T>> for i64
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T> Mul<&Force<T>> for i8
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T> Mul<&Force<T>> for i8
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T> Mul<&Force<T>> for u16
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T> Mul<&Force<T>> for u16
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T> Mul<&Force<T>> for u32
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T> Mul<&Force<T>> for u32
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T> Mul<&Force<T>> for u64
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T> Mul<&Force<T>> for u64
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T> Mul<&Force<T>> for u8
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T> Mul<&Force<T>> for u8
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T> Mul<&InverseAcceleration<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseAcceleration returns a value of type Mass
impl<T> Mul<&InverseAcceleration<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseAcceleration returns a value of type Mass
Source§impl<T> Mul<&InverseAcceleration<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseAcceleration returns a value of type Mass
impl<T> Mul<&InverseAcceleration<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseAcceleration returns a value of type Mass
Source§impl<T> Mul<&InverseArea<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseArea returns a value of type Pressure
impl<T> Mul<&InverseArea<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseArea returns a value of type Pressure
Source§impl<T> Mul<&InverseArea<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseArea returns a value of type Pressure
impl<T> Mul<&InverseArea<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseArea returns a value of type Pressure
Source§impl<T> Mul<&InverseEnergy<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseEnergy returns a value of type InverseDistance
impl<T> Mul<&InverseEnergy<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseEnergy returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<&InverseEnergy<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseEnergy returns a value of type InverseDistance
impl<T> Mul<&InverseEnergy<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseEnergy returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<&InverseMass<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseMass returns a value of type Acceleration
impl<T> Mul<&InverseMass<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseMass returns a value of type Acceleration
Source§type Output = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<&InverseMass<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseMass returns a value of type Acceleration
impl<T> Mul<&InverseMass<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseMass returns a value of type Acceleration
Source§type Output = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<&InverseMomentum<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseMomentum returns a value of type Frequency
impl<T> Mul<&InverseMomentum<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseMomentum returns a value of type Frequency
Source§impl<T> Mul<&InverseMomentum<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseMomentum returns a value of type Frequency
impl<T> Mul<&InverseMomentum<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseMomentum returns a value of type Frequency
Source§impl<T> Mul<&InversePower<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InversePower returns a value of type TimePerDistance
impl<T> Mul<&InversePower<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InversePower returns a value of type TimePerDistance
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<&InversePower<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InversePower returns a value of type TimePerDistance
impl<T> Mul<&InversePower<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InversePower returns a value of type TimePerDistance
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<&InversePressure<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InversePressure returns a value of type Area
impl<T> Mul<&InversePressure<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InversePressure returns a value of type Area
Source§impl<T> Mul<&InversePressure<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InversePressure returns a value of type Area
impl<T> Mul<&InversePressure<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InversePressure returns a value of type Area
Source§impl<T> Mul<&InverseTorque<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseTorque returns a value of type InverseDistance
impl<T> Mul<&InverseTorque<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseTorque returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<&InverseTorque<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseTorque returns a value of type InverseDistance
impl<T> Mul<&InverseTorque<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseTorque returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<&T> for &Force<T>where
T: NumLike,
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<&T> for &Force<T>where
T: NumLike,
Multiplying a unit value by a scalar value returns a unit value
Source§impl<T> Mul<&T> for Force<T>where
T: NumLike,
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<&T> for Force<T>where
T: NumLike,
Multiplying a unit value by a scalar value returns a unit value
Source§impl<T> Mul<&Time<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a Time returns a value of type Momentum
impl<T> Mul<&Time<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a Time returns a value of type Momentum
Source§impl<T> Mul<&Time<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a Time returns a value of type Momentum
impl<T> Mul<&Time<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a Time returns a value of type Momentum
Source§impl<T> Mul<&Velocity<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a Velocity returns a value of type Power
impl<T> Mul<&Velocity<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a Velocity returns a value of type Power
Source§impl<T> Mul<&Velocity<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a Velocity returns a value of type Power
impl<T> Mul<&Velocity<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a Velocity returns a value of type Power
Source§impl<T> Mul<Distance<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a Distance returns a value of type Energy
impl<T> Mul<Distance<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a Distance returns a value of type Energy
Source§impl<T> Mul<Distance<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a Distance returns a value of type Energy
impl<T> Mul<Distance<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a Distance returns a value of type Energy
Source§impl<T> Mul<Force<T>> for &Distance<T>where
T: NumLike,
Multiplying a Distance by a Force returns a value of type Energy
impl<T> Mul<Force<T>> for &Distance<T>where
T: NumLike,
Multiplying a Distance by a Force returns a value of type Energy
Source§impl<T> Mul<Force<T>> for &InverseAcceleration<T>where
T: NumLike,
Multiplying a InverseAcceleration by a Force returns a value of type Mass
impl<T> Mul<Force<T>> for &InverseAcceleration<T>where
T: NumLike,
Multiplying a InverseAcceleration by a Force returns a value of type Mass
Source§impl<T> Mul<Force<T>> for &InverseArea<T>where
T: NumLike,
Multiplying a InverseArea by a Force returns a value of type Pressure
impl<T> Mul<Force<T>> for &InverseArea<T>where
T: NumLike,
Multiplying a InverseArea by a Force returns a value of type Pressure
Source§impl<T> Mul<Force<T>> for &InverseEnergy<T>where
T: NumLike,
Multiplying a InverseEnergy by a Force returns a value of type InverseDistance
impl<T> Mul<Force<T>> for &InverseEnergy<T>where
T: NumLike,
Multiplying a InverseEnergy by a Force returns a value of type InverseDistance
Source§impl<T> Mul<Force<T>> for &InverseMass<T>where
T: NumLike,
Multiplying a InverseMass by a Force returns a value of type Acceleration
impl<T> Mul<Force<T>> for &InverseMass<T>where
T: NumLike,
Multiplying a InverseMass by a Force returns a value of type Acceleration
Source§impl<T> Mul<Force<T>> for &InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a Force returns a value of type Frequency
impl<T> Mul<Force<T>> for &InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a Force returns a value of type Frequency
Source§impl<T> Mul<Force<T>> for &InversePower<T>where
T: NumLike,
Multiplying a InversePower by a Force returns a value of type TimePerDistance
impl<T> Mul<Force<T>> for &InversePower<T>where
T: NumLike,
Multiplying a InversePower by a Force returns a value of type TimePerDistance
Source§impl<T> Mul<Force<T>> for &InversePressure<T>where
T: NumLike,
Multiplying a InversePressure by a Force returns a value of type Area
impl<T> Mul<Force<T>> for &InversePressure<T>where
T: NumLike,
Multiplying a InversePressure by a Force returns a value of type Area
Source§impl<T> Mul<Force<T>> for &InverseTorque<T>where
T: NumLike,
Multiplying a InverseTorque by a Force returns a value of type InverseDistance
impl<T> Mul<Force<T>> for &InverseTorque<T>where
T: NumLike,
Multiplying a InverseTorque by a Force returns a value of type InverseDistance
Source§impl<T> Mul<Force<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Force returns a value of type Momentum
impl<T> Mul<Force<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Force returns a value of type Momentum
Source§impl<T> Mul<Force<T>> for &Velocity<T>where
T: NumLike,
Multiplying a Velocity by a Force returns a value of type Power
impl<T> Mul<Force<T>> for &Velocity<T>where
T: NumLike,
Multiplying a Velocity by a Force returns a value of type Power
Source§impl<T> Mul<Force<T>> for Distance<T>where
T: NumLike,
Multiplying a Distance by a Force returns a value of type Energy
impl<T> Mul<Force<T>> for Distance<T>where
T: NumLike,
Multiplying a Distance by a Force returns a value of type Energy
Source§impl<T> Mul<Force<T>> for InverseAcceleration<T>where
T: NumLike,
Multiplying a InverseAcceleration by a Force returns a value of type Mass
impl<T> Mul<Force<T>> for InverseAcceleration<T>where
T: NumLike,
Multiplying a InverseAcceleration by a Force returns a value of type Mass
Source§impl<T> Mul<Force<T>> for InverseArea<T>where
T: NumLike,
Multiplying a InverseArea by a Force returns a value of type Pressure
impl<T> Mul<Force<T>> for InverseArea<T>where
T: NumLike,
Multiplying a InverseArea by a Force returns a value of type Pressure
Source§impl<T> Mul<Force<T>> for InverseEnergy<T>where
T: NumLike,
Multiplying a InverseEnergy by a Force returns a value of type InverseDistance
impl<T> Mul<Force<T>> for InverseEnergy<T>where
T: NumLike,
Multiplying a InverseEnergy by a Force returns a value of type InverseDistance
Source§impl<T> Mul<Force<T>> for InverseMass<T>where
T: NumLike,
Multiplying a InverseMass by a Force returns a value of type Acceleration
impl<T> Mul<Force<T>> for InverseMass<T>where
T: NumLike,
Multiplying a InverseMass by a Force returns a value of type Acceleration
Source§impl<T> Mul<Force<T>> for InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a Force returns a value of type Frequency
impl<T> Mul<Force<T>> for InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a Force returns a value of type Frequency
Source§impl<T> Mul<Force<T>> for InversePower<T>where
T: NumLike,
Multiplying a InversePower by a Force returns a value of type TimePerDistance
impl<T> Mul<Force<T>> for InversePower<T>where
T: NumLike,
Multiplying a InversePower by a Force returns a value of type TimePerDistance
Source§impl<T> Mul<Force<T>> for InversePressure<T>where
T: NumLike,
Multiplying a InversePressure by a Force returns a value of type Area
impl<T> Mul<Force<T>> for InversePressure<T>where
T: NumLike,
Multiplying a InversePressure by a Force returns a value of type Area
Source§impl<T> Mul<Force<T>> for InverseTorque<T>where
T: NumLike,
Multiplying a InverseTorque by a Force returns a value of type InverseDistance
impl<T> Mul<Force<T>> for InverseTorque<T>where
T: NumLike,
Multiplying a InverseTorque by a Force returns a value of type InverseDistance
Source§impl<T> Mul<Force<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Force returns a value of type Momentum
impl<T> Mul<Force<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Force returns a value of type Momentum
Source§impl<T> Mul<Force<T>> for Velocity<T>where
T: NumLike,
Multiplying a Velocity by a Force returns a value of type Power
impl<T> Mul<Force<T>> for Velocity<T>where
T: NumLike,
Multiplying a Velocity by a Force returns a value of type Power
Source§impl<T> Mul<InverseAcceleration<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseAcceleration returns a value of type Mass
impl<T> Mul<InverseAcceleration<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseAcceleration returns a value of type Mass
Source§impl<T> Mul<InverseAcceleration<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseAcceleration returns a value of type Mass
impl<T> Mul<InverseAcceleration<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseAcceleration returns a value of type Mass
Source§impl<T> Mul<InverseArea<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseArea returns a value of type Pressure
impl<T> Mul<InverseArea<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseArea returns a value of type Pressure
Source§impl<T> Mul<InverseArea<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseArea returns a value of type Pressure
impl<T> Mul<InverseArea<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseArea returns a value of type Pressure
Source§impl<T> Mul<InverseEnergy<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseEnergy returns a value of type InverseDistance
impl<T> Mul<InverseEnergy<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseEnergy returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<InverseEnergy<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseEnergy returns a value of type InverseDistance
impl<T> Mul<InverseEnergy<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseEnergy returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<InverseMass<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseMass returns a value of type Acceleration
impl<T> Mul<InverseMass<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseMass returns a value of type Acceleration
Source§type Output = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<InverseMass<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseMass returns a value of type Acceleration
impl<T> Mul<InverseMass<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseMass returns a value of type Acceleration
Source§type Output = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<InverseMomentum<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseMomentum returns a value of type Frequency
impl<T> Mul<InverseMomentum<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseMomentum returns a value of type Frequency
Source§impl<T> Mul<InverseMomentum<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseMomentum returns a value of type Frequency
impl<T> Mul<InverseMomentum<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseMomentum returns a value of type Frequency
Source§impl<T> Mul<InversePower<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InversePower returns a value of type TimePerDistance
impl<T> Mul<InversePower<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InversePower returns a value of type TimePerDistance
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<InversePower<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InversePower returns a value of type TimePerDistance
impl<T> Mul<InversePower<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InversePower returns a value of type TimePerDistance
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<InversePressure<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InversePressure returns a value of type Area
impl<T> Mul<InversePressure<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InversePressure returns a value of type Area
Source§impl<T> Mul<InversePressure<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InversePressure returns a value of type Area
impl<T> Mul<InversePressure<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InversePressure returns a value of type Area
Source§impl<T> Mul<InverseTorque<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseTorque returns a value of type InverseDistance
impl<T> Mul<InverseTorque<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a InverseTorque returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<InverseTorque<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseTorque returns a value of type InverseDistance
impl<T> Mul<InverseTorque<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a InverseTorque returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T: NumLike> Mul<T> for &Force<T>
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T: NumLike> Mul<T> for &Force<T>
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T: NumLike> Mul<T> for Force<T>
Multiplying a unit value by a scalar value returns a unit value
impl<T: NumLike> Mul<T> for Force<T>
Multiplying a unit value by a scalar value returns a unit value
Source§impl<T> Mul<Time<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a Time returns a value of type Momentum
impl<T> Mul<Time<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a Time returns a value of type Momentum
Source§impl<T> Mul<Time<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a Time returns a value of type Momentum
impl<T> Mul<Time<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a Time returns a value of type Momentum
Source§impl<T> Mul<Velocity<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a Velocity returns a value of type Power
impl<T> Mul<Velocity<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a Velocity returns a value of type Power
Source§impl<T> Mul<Velocity<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a Velocity returns a value of type Power
impl<T> Mul<Velocity<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a Velocity returns a value of type Power
Source§impl<T: NumLike> MulAssign<T> for Force<T>
Multiplies this unit value by a scalar
impl<T: NumLike> MulAssign<T> for Force<T>
Multiplies this unit value by a scalar
Source§fn mul_assign(&mut self, rhs: T)
fn mul_assign(&mut self, rhs: T)
*= operation. Read moreSource§impl<T: NumLike> Neg for &Force<T>
Flips the sign of this unit value (automatically clones the referenced data for convenient ergonomics)
impl<T: NumLike> Neg for &Force<T>
Flips the sign of this unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T> Ord for Force<T>
This struct implements the Ord trait if it’s member data type also has the Ord trait
impl<T> Ord for Force<T>
This struct implements the Ord trait if it’s member data type also has the Ord trait
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl<T> PartialEq for Force<T>
This struct implements the PartialEq trait if it’s member data type also has the PartialEq trait
impl<T> PartialEq for Force<T>
This struct implements the PartialEq trait if it’s member data type also has the PartialEq trait
Source§impl<T> PartialOrd for Force<T>where
T: NumLike + PartialOrd,
This struct implements the PartialOrd trait if it’s member data type also has the PartialOrd trait
impl<T> PartialOrd for Force<T>where
T: NumLike + PartialOrd,
This struct implements the PartialOrd trait if it’s member data type also has the PartialOrd trait
Source§impl<T: NumLike> Sub for &Force<T>
Subtracting two unit values of the same type returns a new unit value of the same type (automatically clones the referenced data for convenient ergonomics)
impl<T: NumLike> Sub for &Force<T>
Subtracting two unit values of the same type returns a new unit value of the same type (automatically clones the referenced data for convenient ergonomics)
Source§impl<T: NumLike> Sub for Force<T>
Subtracting two unit values of the same type returns a new unit value of the same type
impl<T: NumLike> Sub for Force<T>
Subtracting two unit values of the same type returns a new unit value of the same type
Source§impl<T: NumLike> SubAssign for Force<T>
Subtracts the given unit value from this unit value
impl<T: NumLike> SubAssign for Force<T>
Subtracts the given unit value from this unit value
Source§fn sub_assign(&mut self, rhs: Self)
fn sub_assign(&mut self, rhs: Self)
-= operation. Read moreimpl<T> Copy for Force<T>
This struct implements the Copy marker trait if it’s member data type also has the Copy trait
impl<T> Eq for Force<T>
This struct implements the core::cmp::Eq trait if it’s member data type also has the core::cmp::Eq trait