pub struct TimePerDistance<T: NumLike> {
pub spm: T,
}Expand description
The inverse of velocity unit type, defined as seconds per meter in SI units
Fields§
§spm: TThe value of this Time per distance in seconds per meter
Implementations§
Source§impl<T> TimePerDistance<T>where
T: NumLike,
impl<T> TimePerDistance<T>where
T: NumLike,
Sourcepub fn unit_name() -> &'static str
pub fn unit_name() -> &'static str
Returns the standard unit name of time per distance: “seconds per meter”
Sourcepub fn unit_symbol() -> &'static str
pub fn unit_symbol() -> &'static str
Returns the abbreviated name or symbol of time per distance: “s/m” for seconds per meter
Sourcepub fn from_spm(spm: T) -> Self
pub fn from_spm(spm: T) -> Self
Returns a new time per distance value from the given number of seconds per meter
§Arguments
spm- Any number-like type, representing a quantity of seconds per meter
Sourcepub fn from_seconds_per_meter(seconds_per_meter: T) -> Self
pub fn from_seconds_per_meter(seconds_per_meter: T) -> Self
Returns a new time per distance value from the given number of seconds per meter
§Arguments
seconds_per_meter- Any number-like type, representing a quantity of seconds per meter
Sourcepub fn to_seconds_per_meter(&self) -> T
pub fn to_seconds_per_meter(&self) -> T
Returns a copy of this time per distance value in seconds per meter
Source§impl<T> TimePerDistance<T>
impl<T> TimePerDistance<T>
Sourcepub fn to_s_per_cm(&self) -> T
pub fn to_s_per_cm(&self) -> T
Returns a copy of this time per distance value in seconds per centimeter
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_s_per_cm(s_per_cm: T) -> Self
pub fn from_s_per_cm(s_per_cm: T) -> Self
Returns a new time per distance value from the given number of seconds per centimeter
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
s_per_cm- Any number-like type, representing a quantity of seconds per centimeter
Sourcepub fn to_s_per_mm(&self) -> T
pub fn to_s_per_mm(&self) -> T
Returns a copy of this time per distance value in seconds per millimeter
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_s_per_mm(s_per_mm: T) -> Self
pub fn from_s_per_mm(s_per_mm: T) -> Self
Returns a new time per distance value from the given number of seconds per millimeter
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
s_per_mm- Any number-like type, representing a quantity of seconds per millimeter
Sourcepub fn to_hr_per_km(&self) -> T
pub fn to_hr_per_km(&self) -> T
Returns a copy of this time per distance value in hours per kilometer
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_hr_per_km(hr_per_km: T) -> Self
pub fn from_hr_per_km(hr_per_km: T) -> Self
Returns a new time per distance value from the given number of hours per kilometer
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
hr_per_km- Any number-like type, representing a quantity of hours per kilometer
Sourcepub fn to_hr_per_mi(&self) -> T
pub fn to_hr_per_mi(&self) -> T
Returns a copy of this time per distance value in hours per mile
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_hr_per_mi(hr_per_mi: T) -> Self
pub fn from_hr_per_mi(hr_per_mi: T) -> Self
Returns a new time per distance value from the given number of hours per mile
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
hr_per_mi- Any number-like type, representing a quantity of hours per mile
Trait Implementations§
Source§impl<T: NumLike> Add for &TimePerDistance<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 &TimePerDistance<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 TimePerDistance<T>
Adding two unit values of the same type returns a new unit value of the same type
impl<T: NumLike> Add for TimePerDistance<T>
Adding two unit values of the same type returns a new unit value of the same type
Source§impl<T: NumLike> AddAssign for TimePerDistance<T>
Adds the given unit value to this unit value
impl<T: NumLike> AddAssign for TimePerDistance<T>
Adds the given unit value to this unit value
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
+= operation. Read moreSource§impl<T: Clone + NumLike> Clone for TimePerDistance<T>
impl<T: Clone + NumLike> Clone for TimePerDistance<T>
Source§fn clone(&self) -> TimePerDistance<T>
fn clone(&self) -> TimePerDistance<T>
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl<T> Display for TimePerDistance<T>where
T: NumLike,
impl<T> Display for TimePerDistance<T>where
T: NumLike,
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 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<&Frequency<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Frequency returns a value of type InverseAcceleration
impl<T> Div<&Frequency<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Frequency returns a value of type InverseAcceleration
Source§impl<T> Div<&Frequency<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Frequency returns a value of type InverseAcceleration
impl<T> Div<&Frequency<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Frequency returns a value of type InverseAcceleration
Source§impl<T> Div<&InverseAbsorbedDose<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseAbsorbedDose returns a value of type Velocity
impl<T> Div<&InverseAbsorbedDose<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseAbsorbedDose returns a value of type Velocity
Source§impl<T> Div<&InverseAbsorbedDose<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseAbsorbedDose returns a value of type Velocity
impl<T> Div<&InverseAbsorbedDose<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseAbsorbedDose returns a value of type Velocity
Source§impl<T> Div<&InverseAcceleration<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseAcceleration returns a value of type Frequency
impl<T> Div<&InverseAcceleration<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseAcceleration returns a value of type Frequency
Source§impl<T> Div<&InverseAcceleration<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseAcceleration returns a value of type Frequency
impl<T> Div<&InverseAcceleration<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseAcceleration returns a value of type Frequency
Source§impl<T> Div<&InverseDistance<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseDistance returns a value of type Time
impl<T> Div<&InverseDistance<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseDistance returns a value of type Time
Source§impl<T> Div<&InverseDistance<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseDistance returns a value of type Time
impl<T> Div<&InverseDistance<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseDistance returns a value of type Time
Source§impl<T> Div<&InverseDoseEquivalent<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseDoseEquivalent returns a value of type Velocity
impl<T> Div<&InverseDoseEquivalent<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseDoseEquivalent returns a value of type Velocity
Source§impl<T> Div<&InverseDoseEquivalent<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseDoseEquivalent returns a value of type Velocity
impl<T> Div<&InverseDoseEquivalent<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseDoseEquivalent returns a value of type Velocity
Source§impl<T> Div<&InverseEnergy<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseEnergy returns a value of type Momentum
impl<T> Div<&InverseEnergy<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseEnergy returns a value of type Momentum
Source§impl<T> Div<&InverseEnergy<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseEnergy returns a value of type Momentum
impl<T> Div<&InverseEnergy<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseEnergy returns a value of type Momentum
Source§impl<T> Div<&InverseMomentum<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseMomentum returns a value of type Mass
impl<T> Div<&InverseMomentum<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseMomentum returns a value of type Mass
Source§impl<T> Div<&InverseMomentum<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseMomentum returns a value of type Mass
impl<T> Div<&InverseMomentum<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseMomentum returns a value of type Mass
Source§impl<T> Div<&InversePower<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InversePower returns a value of type Force
impl<T> Div<&InversePower<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InversePower returns a value of type Force
Source§impl<T> Div<&InversePower<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InversePower returns a value of type Force
impl<T> Div<&InversePower<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InversePower returns a value of type Force
Source§impl<T> Div<&InverseTorque<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseTorque returns a value of type Momentum
impl<T> Div<&InverseTorque<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseTorque returns a value of type Momentum
Source§impl<T> Div<&InverseTorque<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseTorque returns a value of type Momentum
impl<T> Div<&InverseTorque<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseTorque returns a value of type Momentum
Source§impl<T> Div<&Mass<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Mass returns a value of type InverseMomentum
impl<T> Div<&Mass<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Mass returns a value of type InverseMomentum
Source§impl<T> Div<&Mass<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Mass returns a value of type InverseMomentum
impl<T> Div<&Mass<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Mass returns a value of type InverseMomentum
Source§impl<T> Div<&Momentum<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Momentum returns a value of type InverseEnergy
impl<T> Div<&Momentum<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Momentum returns a value of type InverseEnergy
Source§impl<T> Div<&Momentum<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Momentum returns a value of type InverseEnergy
impl<T> Div<&Momentum<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Momentum returns a value of type InverseEnergy
Source§impl<T> Div<&T> for &TimePerDistance<T>where
T: NumLike,
Dividing a unit value by a scalar value returns a unit value
impl<T> Div<&T> for &TimePerDistance<T>where
T: NumLike,
Dividing a unit value by a scalar value returns a unit value
Source§impl<T> Div<&T> for TimePerDistance<T>where
T: NumLike,
Dividing a unit value by a scalar value returns a unit value
impl<T> Div<&T> for TimePerDistance<T>where
T: NumLike,
Dividing a unit value by a scalar value returns a unit value
Source§impl<T> Div<&Time<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Time returns a value of type InverseDistance
impl<T> Div<&Time<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Time returns a value of type InverseDistance
Source§impl<T> Div<&Time<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Time returns a value of type InverseDistance
impl<T> Div<&Time<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Time returns a value of type InverseDistance
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 &Frequency<T>where
T: NumLike,
Dividing a Frequency by a TimePerDistance returns a value of type Acceleration
impl<T> Div<&TimePerDistance<T>> for &Frequency<T>where
T: NumLike,
Dividing a Frequency by a TimePerDistance returns a value of type Acceleration
Source§type Output = Acceleration<T>
type Output = Acceleration<T>
/ operator.Source§impl<T> Div<&TimePerDistance<T>> for &InverseAbsorbedDose<T>where
T: NumLike,
Dividing a InverseAbsorbedDose by a TimePerDistance returns a value of type TimePerDistance
impl<T> Div<&TimePerDistance<T>> for &InverseAbsorbedDose<T>where
T: NumLike,
Dividing a InverseAbsorbedDose by a TimePerDistance returns a value of type TimePerDistance
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
/ operator.Source§impl<T> Div<&TimePerDistance<T>> for &InverseAcceleration<T>where
T: NumLike,
Dividing a InverseAcceleration by a TimePerDistance returns a value of type Time
impl<T> Div<&TimePerDistance<T>> for &InverseAcceleration<T>where
T: NumLike,
Dividing a InverseAcceleration by a TimePerDistance returns a value of type Time
Source§impl<T> Div<&TimePerDistance<T>> for &InverseDistance<T>where
T: NumLike,
Dividing a InverseDistance by a TimePerDistance returns a value of type Frequency
impl<T> Div<&TimePerDistance<T>> for &InverseDistance<T>where
T: NumLike,
Dividing a InverseDistance by a TimePerDistance returns a value of type Frequency
Source§impl<T> Div<&TimePerDistance<T>> for &InverseDoseEquivalent<T>where
T: NumLike,
Dividing a InverseDoseEquivalent by a TimePerDistance returns a value of type TimePerDistance
impl<T> Div<&TimePerDistance<T>> for &InverseDoseEquivalent<T>where
T: NumLike,
Dividing a InverseDoseEquivalent by a TimePerDistance returns a value of type TimePerDistance
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
/ operator.Source§impl<T> Div<&TimePerDistance<T>> for &InverseEnergy<T>where
T: NumLike,
Dividing a InverseEnergy by a TimePerDistance returns a value of type InverseMomentum
impl<T> Div<&TimePerDistance<T>> for &InverseEnergy<T>where
T: NumLike,
Dividing a InverseEnergy by a TimePerDistance returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
/ operator.Source§impl<T> Div<&TimePerDistance<T>> for &InverseMomentum<T>where
T: NumLike,
Dividing a InverseMomentum by a TimePerDistance returns a value of type InverseMass
impl<T> Div<&TimePerDistance<T>> for &InverseMomentum<T>where
T: NumLike,
Dividing a InverseMomentum by a TimePerDistance returns a value of type InverseMass
Source§type Output = InverseMass<T>
type Output = InverseMass<T>
/ operator.Source§impl<T> Div<&TimePerDistance<T>> for &InversePower<T>where
T: NumLike,
Dividing a InversePower by a TimePerDistance returns a value of type InverseForce
impl<T> Div<&TimePerDistance<T>> for &InversePower<T>where
T: NumLike,
Dividing a InversePower by a TimePerDistance returns a value of type InverseForce
Source§type Output = InverseForce<T>
type Output = InverseForce<T>
/ operator.Source§impl<T> Div<&TimePerDistance<T>> for &InverseTorque<T>where
T: NumLike,
Dividing a InverseTorque by a TimePerDistance returns a value of type InverseMomentum
impl<T> Div<&TimePerDistance<T>> for &InverseTorque<T>where
T: NumLike,
Dividing a InverseTorque by a TimePerDistance returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
/ operator.Source§impl<T> Div<&TimePerDistance<T>> for &Mass<T>where
T: NumLike,
Dividing a Mass by a TimePerDistance returns a value of type Momentum
impl<T> Div<&TimePerDistance<T>> for &Mass<T>where
T: NumLike,
Dividing a Mass by a TimePerDistance returns a value of type Momentum
Source§impl<T> Div<&TimePerDistance<T>> for &Momentum<T>where
T: NumLike,
Dividing a Momentum by a TimePerDistance returns a value of type Energy
impl<T> Div<&TimePerDistance<T>> for &Momentum<T>where
T: NumLike,
Dividing a Momentum by a TimePerDistance returns a value of type Energy
Source§impl<T> Div<&TimePerDistance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a TimePerDistance returns a value of type Distance
impl<T> Div<&TimePerDistance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a TimePerDistance returns a value of type Distance
Source§impl<T> Div<&TimePerDistance<T>> for &f32
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
impl<T> Div<&TimePerDistance<T>> for &f32
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
Source§impl<T> Div<&TimePerDistance<T>> for &f64
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
impl<T> Div<&TimePerDistance<T>> for &f64
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
Source§impl<T> Div<&TimePerDistance<T>> for &i32
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
impl<T> Div<&TimePerDistance<T>> for &i32
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
Source§impl<T> Div<&TimePerDistance<T>> for &i64
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
impl<T> Div<&TimePerDistance<T>> for &i64
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
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 Frequency<T>where
T: NumLike,
Dividing a Frequency by a TimePerDistance returns a value of type Acceleration
impl<T> Div<&TimePerDistance<T>> for Frequency<T>where
T: NumLike,
Dividing a Frequency by a TimePerDistance returns a value of type Acceleration
Source§type Output = Acceleration<T>
type Output = Acceleration<T>
/ operator.Source§impl<T> Div<&TimePerDistance<T>> for InverseAbsorbedDose<T>where
T: NumLike,
Dividing a InverseAbsorbedDose by a TimePerDistance returns a value of type TimePerDistance
impl<T> Div<&TimePerDistance<T>> for InverseAbsorbedDose<T>where
T: NumLike,
Dividing a InverseAbsorbedDose by a TimePerDistance returns a value of type TimePerDistance
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
/ operator.Source§impl<T> Div<&TimePerDistance<T>> for InverseAcceleration<T>where
T: NumLike,
Dividing a InverseAcceleration by a TimePerDistance returns a value of type Time
impl<T> Div<&TimePerDistance<T>> for InverseAcceleration<T>where
T: NumLike,
Dividing a InverseAcceleration by a TimePerDistance returns a value of type Time
Source§impl<T> Div<&TimePerDistance<T>> for InverseDistance<T>where
T: NumLike,
Dividing a InverseDistance by a TimePerDistance returns a value of type Frequency
impl<T> Div<&TimePerDistance<T>> for InverseDistance<T>where
T: NumLike,
Dividing a InverseDistance by a TimePerDistance returns a value of type Frequency
Source§impl<T> Div<&TimePerDistance<T>> for InverseDoseEquivalent<T>where
T: NumLike,
Dividing a InverseDoseEquivalent by a TimePerDistance returns a value of type TimePerDistance
impl<T> Div<&TimePerDistance<T>> for InverseDoseEquivalent<T>where
T: NumLike,
Dividing a InverseDoseEquivalent by a TimePerDistance returns a value of type TimePerDistance
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
/ operator.Source§impl<T> Div<&TimePerDistance<T>> for InverseEnergy<T>where
T: NumLike,
Dividing a InverseEnergy by a TimePerDistance returns a value of type InverseMomentum
impl<T> Div<&TimePerDistance<T>> for InverseEnergy<T>where
T: NumLike,
Dividing a InverseEnergy by a TimePerDistance returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
/ operator.Source§impl<T> Div<&TimePerDistance<T>> for InverseMomentum<T>where
T: NumLike,
Dividing a InverseMomentum by a TimePerDistance returns a value of type InverseMass
impl<T> Div<&TimePerDistance<T>> for InverseMomentum<T>where
T: NumLike,
Dividing a InverseMomentum by a TimePerDistance returns a value of type InverseMass
Source§type Output = InverseMass<T>
type Output = InverseMass<T>
/ operator.Source§impl<T> Div<&TimePerDistance<T>> for InversePower<T>where
T: NumLike,
Dividing a InversePower by a TimePerDistance returns a value of type InverseForce
impl<T> Div<&TimePerDistance<T>> for InversePower<T>where
T: NumLike,
Dividing a InversePower by a TimePerDistance returns a value of type InverseForce
Source§type Output = InverseForce<T>
type Output = InverseForce<T>
/ operator.Source§impl<T> Div<&TimePerDistance<T>> for InverseTorque<T>where
T: NumLike,
Dividing a InverseTorque by a TimePerDistance returns a value of type InverseMomentum
impl<T> Div<&TimePerDistance<T>> for InverseTorque<T>where
T: NumLike,
Dividing a InverseTorque by a TimePerDistance returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
/ operator.Source§impl<T> Div<&TimePerDistance<T>> for Mass<T>where
T: NumLike,
Dividing a Mass by a TimePerDistance returns a value of type Momentum
impl<T> Div<&TimePerDistance<T>> for Mass<T>where
T: NumLike,
Dividing a Mass by a TimePerDistance returns a value of type Momentum
Source§impl<T> Div<&TimePerDistance<T>> for Momentum<T>where
T: NumLike,
Dividing a Momentum by a TimePerDistance returns a value of type Energy
impl<T> Div<&TimePerDistance<T>> for Momentum<T>where
T: NumLike,
Dividing a Momentum by a TimePerDistance returns a value of type Energy
Source§impl<T> Div<&TimePerDistance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a TimePerDistance returns a value of type Distance
impl<T> Div<&TimePerDistance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a TimePerDistance returns a value of type Distance
Source§impl<T> Div<&TimePerDistance<T>> for f32
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
impl<T> Div<&TimePerDistance<T>> for f32
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
Source§impl<T> Div<&TimePerDistance<T>> for f64
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
impl<T> Div<&TimePerDistance<T>> for f64
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
Source§impl<T> Div<&TimePerDistance<T>> for i32
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
impl<T> Div<&TimePerDistance<T>> for i32
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
Source§impl<T> Div<&TimePerDistance<T>> for i64
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
impl<T> Div<&TimePerDistance<T>> for i64
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
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 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<Frequency<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Frequency returns a value of type InverseAcceleration
impl<T> Div<Frequency<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Frequency returns a value of type InverseAcceleration
Source§impl<T> Div<Frequency<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Frequency returns a value of type InverseAcceleration
impl<T> Div<Frequency<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Frequency returns a value of type InverseAcceleration
Source§impl<T> Div<InverseAbsorbedDose<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseAbsorbedDose returns a value of type Velocity
impl<T> Div<InverseAbsorbedDose<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseAbsorbedDose returns a value of type Velocity
Source§impl<T> Div<InverseAbsorbedDose<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseAbsorbedDose returns a value of type Velocity
impl<T> Div<InverseAbsorbedDose<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseAbsorbedDose returns a value of type Velocity
Source§impl<T> Div<InverseAcceleration<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseAcceleration returns a value of type Frequency
impl<T> Div<InverseAcceleration<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseAcceleration returns a value of type Frequency
Source§impl<T> Div<InverseAcceleration<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseAcceleration returns a value of type Frequency
impl<T> Div<InverseAcceleration<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseAcceleration returns a value of type Frequency
Source§impl<T> Div<InverseDistance<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseDistance returns a value of type Time
impl<T> Div<InverseDistance<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseDistance returns a value of type Time
Source§impl<T> Div<InverseDistance<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseDistance returns a value of type Time
impl<T> Div<InverseDistance<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseDistance returns a value of type Time
Source§impl<T> Div<InverseDoseEquivalent<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseDoseEquivalent returns a value of type Velocity
impl<T> Div<InverseDoseEquivalent<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseDoseEquivalent returns a value of type Velocity
Source§impl<T> Div<InverseDoseEquivalent<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseDoseEquivalent returns a value of type Velocity
impl<T> Div<InverseDoseEquivalent<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseDoseEquivalent returns a value of type Velocity
Source§impl<T> Div<InverseEnergy<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseEnergy returns a value of type Momentum
impl<T> Div<InverseEnergy<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseEnergy returns a value of type Momentum
Source§impl<T> Div<InverseEnergy<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseEnergy returns a value of type Momentum
impl<T> Div<InverseEnergy<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseEnergy returns a value of type Momentum
Source§impl<T> Div<InverseMomentum<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseMomentum returns a value of type Mass
impl<T> Div<InverseMomentum<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseMomentum returns a value of type Mass
Source§impl<T> Div<InverseMomentum<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseMomentum returns a value of type Mass
impl<T> Div<InverseMomentum<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseMomentum returns a value of type Mass
Source§impl<T> Div<InversePower<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InversePower returns a value of type Force
impl<T> Div<InversePower<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InversePower returns a value of type Force
Source§impl<T> Div<InversePower<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InversePower returns a value of type Force
impl<T> Div<InversePower<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InversePower returns a value of type Force
Source§impl<T> Div<InverseTorque<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseTorque returns a value of type Momentum
impl<T> Div<InverseTorque<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseTorque returns a value of type Momentum
Source§impl<T> Div<InverseTorque<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseTorque returns a value of type Momentum
impl<T> Div<InverseTorque<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a InverseTorque returns a value of type Momentum
Source§impl<T> Div<Mass<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Mass returns a value of type InverseMomentum
impl<T> Div<Mass<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Mass returns a value of type InverseMomentum
Source§impl<T> Div<Mass<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Mass returns a value of type InverseMomentum
impl<T> Div<Mass<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Mass returns a value of type InverseMomentum
Source§impl<T> Div<Momentum<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Momentum returns a value of type InverseEnergy
impl<T> Div<Momentum<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Momentum returns a value of type InverseEnergy
Source§impl<T> Div<Momentum<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Momentum returns a value of type InverseEnergy
impl<T> Div<Momentum<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Momentum returns a value of type InverseEnergy
Source§impl<T: NumLike> Div<T> for &TimePerDistance<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 &TimePerDistance<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 TimePerDistance<T>
Dividing a unit value by a scalar value returns a unit value
impl<T: NumLike> Div<T> for TimePerDistance<T>
Dividing a unit value by a scalar value returns a unit value
Source§impl<T> Div<Time<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Time returns a value of type InverseDistance
impl<T> Div<Time<T>> for &TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Time returns a value of type InverseDistance
Source§impl<T> Div<Time<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Time returns a value of type InverseDistance
impl<T> Div<Time<T>> for TimePerDistance<T>where
T: NumLike,
Dividing a TimePerDistance by a Time returns a value of type InverseDistance
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 &Frequency<T>where
T: NumLike,
Dividing a Frequency by a TimePerDistance returns a value of type Acceleration
impl<T> Div<TimePerDistance<T>> for &Frequency<T>where
T: NumLike,
Dividing a Frequency by a TimePerDistance returns a value of type Acceleration
Source§type Output = Acceleration<T>
type Output = Acceleration<T>
/ operator.Source§impl<T> Div<TimePerDistance<T>> for &InverseAbsorbedDose<T>where
T: NumLike,
Dividing a InverseAbsorbedDose by a TimePerDistance returns a value of type TimePerDistance
impl<T> Div<TimePerDistance<T>> for &InverseAbsorbedDose<T>where
T: NumLike,
Dividing a InverseAbsorbedDose by a TimePerDistance returns a value of type TimePerDistance
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
/ operator.Source§impl<T> Div<TimePerDistance<T>> for &InverseAcceleration<T>where
T: NumLike,
Dividing a InverseAcceleration by a TimePerDistance returns a value of type Time
impl<T> Div<TimePerDistance<T>> for &InverseAcceleration<T>where
T: NumLike,
Dividing a InverseAcceleration by a TimePerDistance returns a value of type Time
Source§impl<T> Div<TimePerDistance<T>> for &InverseDistance<T>where
T: NumLike,
Dividing a InverseDistance by a TimePerDistance returns a value of type Frequency
impl<T> Div<TimePerDistance<T>> for &InverseDistance<T>where
T: NumLike,
Dividing a InverseDistance by a TimePerDistance returns a value of type Frequency
Source§impl<T> Div<TimePerDistance<T>> for &InverseDoseEquivalent<T>where
T: NumLike,
Dividing a InverseDoseEquivalent by a TimePerDistance returns a value of type TimePerDistance
impl<T> Div<TimePerDistance<T>> for &InverseDoseEquivalent<T>where
T: NumLike,
Dividing a InverseDoseEquivalent by a TimePerDistance returns a value of type TimePerDistance
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
/ operator.Source§impl<T> Div<TimePerDistance<T>> for &InverseEnergy<T>where
T: NumLike,
Dividing a InverseEnergy by a TimePerDistance returns a value of type InverseMomentum
impl<T> Div<TimePerDistance<T>> for &InverseEnergy<T>where
T: NumLike,
Dividing a InverseEnergy by a TimePerDistance returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
/ operator.Source§impl<T> Div<TimePerDistance<T>> for &InverseMomentum<T>where
T: NumLike,
Dividing a InverseMomentum by a TimePerDistance returns a value of type InverseMass
impl<T> Div<TimePerDistance<T>> for &InverseMomentum<T>where
T: NumLike,
Dividing a InverseMomentum by a TimePerDistance returns a value of type InverseMass
Source§type Output = InverseMass<T>
type Output = InverseMass<T>
/ operator.Source§impl<T> Div<TimePerDistance<T>> for &InversePower<T>where
T: NumLike,
Dividing a InversePower by a TimePerDistance returns a value of type InverseForce
impl<T> Div<TimePerDistance<T>> for &InversePower<T>where
T: NumLike,
Dividing a InversePower by a TimePerDistance returns a value of type InverseForce
Source§type Output = InverseForce<T>
type Output = InverseForce<T>
/ operator.Source§impl<T> Div<TimePerDistance<T>> for &InverseTorque<T>where
T: NumLike,
Dividing a InverseTorque by a TimePerDistance returns a value of type InverseMomentum
impl<T> Div<TimePerDistance<T>> for &InverseTorque<T>where
T: NumLike,
Dividing a InverseTorque by a TimePerDistance returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
/ operator.Source§impl<T> Div<TimePerDistance<T>> for &Mass<T>where
T: NumLike,
Dividing a Mass by a TimePerDistance returns a value of type Momentum
impl<T> Div<TimePerDistance<T>> for &Mass<T>where
T: NumLike,
Dividing a Mass by a TimePerDistance returns a value of type Momentum
Source§impl<T> Div<TimePerDistance<T>> for &Momentum<T>where
T: NumLike,
Dividing a Momentum by a TimePerDistance returns a value of type Energy
impl<T> Div<TimePerDistance<T>> for &Momentum<T>where
T: NumLike,
Dividing a Momentum by a TimePerDistance returns a value of type Energy
Source§impl<T> Div<TimePerDistance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a TimePerDistance returns a value of type Distance
impl<T> Div<TimePerDistance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a TimePerDistance returns a value of type Distance
Source§impl<T> Div<TimePerDistance<T>> for &f32
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
impl<T> Div<TimePerDistance<T>> for &f32
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
Source§impl<T> Div<TimePerDistance<T>> for &f64
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
impl<T> Div<TimePerDistance<T>> for &f64
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
Source§impl<T> Div<TimePerDistance<T>> for &i32
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
impl<T> Div<TimePerDistance<T>> for &i32
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
Source§impl<T> Div<TimePerDistance<T>> for &i64
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
impl<T> Div<TimePerDistance<T>> for &i64
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
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 Frequency<T>where
T: NumLike,
Dividing a Frequency by a TimePerDistance returns a value of type Acceleration
impl<T> Div<TimePerDistance<T>> for Frequency<T>where
T: NumLike,
Dividing a Frequency by a TimePerDistance returns a value of type Acceleration
Source§type Output = Acceleration<T>
type Output = Acceleration<T>
/ operator.Source§impl<T> Div<TimePerDistance<T>> for InverseAbsorbedDose<T>where
T: NumLike,
Dividing a InverseAbsorbedDose by a TimePerDistance returns a value of type TimePerDistance
impl<T> Div<TimePerDistance<T>> for InverseAbsorbedDose<T>where
T: NumLike,
Dividing a InverseAbsorbedDose by a TimePerDistance returns a value of type TimePerDistance
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
/ operator.Source§impl<T> Div<TimePerDistance<T>> for InverseAcceleration<T>where
T: NumLike,
Dividing a InverseAcceleration by a TimePerDistance returns a value of type Time
impl<T> Div<TimePerDistance<T>> for InverseAcceleration<T>where
T: NumLike,
Dividing a InverseAcceleration by a TimePerDistance returns a value of type Time
Source§impl<T> Div<TimePerDistance<T>> for InverseDistance<T>where
T: NumLike,
Dividing a InverseDistance by a TimePerDistance returns a value of type Frequency
impl<T> Div<TimePerDistance<T>> for InverseDistance<T>where
T: NumLike,
Dividing a InverseDistance by a TimePerDistance returns a value of type Frequency
Source§impl<T> Div<TimePerDistance<T>> for InverseDoseEquivalent<T>where
T: NumLike,
Dividing a InverseDoseEquivalent by a TimePerDistance returns a value of type TimePerDistance
impl<T> Div<TimePerDistance<T>> for InverseDoseEquivalent<T>where
T: NumLike,
Dividing a InverseDoseEquivalent by a TimePerDistance returns a value of type TimePerDistance
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
/ operator.Source§impl<T> Div<TimePerDistance<T>> for InverseEnergy<T>where
T: NumLike,
Dividing a InverseEnergy by a TimePerDistance returns a value of type InverseMomentum
impl<T> Div<TimePerDistance<T>> for InverseEnergy<T>where
T: NumLike,
Dividing a InverseEnergy by a TimePerDistance returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
/ operator.Source§impl<T> Div<TimePerDistance<T>> for InverseMomentum<T>where
T: NumLike,
Dividing a InverseMomentum by a TimePerDistance returns a value of type InverseMass
impl<T> Div<TimePerDistance<T>> for InverseMomentum<T>where
T: NumLike,
Dividing a InverseMomentum by a TimePerDistance returns a value of type InverseMass
Source§type Output = InverseMass<T>
type Output = InverseMass<T>
/ operator.Source§impl<T> Div<TimePerDistance<T>> for InversePower<T>where
T: NumLike,
Dividing a InversePower by a TimePerDistance returns a value of type InverseForce
impl<T> Div<TimePerDistance<T>> for InversePower<T>where
T: NumLike,
Dividing a InversePower by a TimePerDistance returns a value of type InverseForce
Source§type Output = InverseForce<T>
type Output = InverseForce<T>
/ operator.Source§impl<T> Div<TimePerDistance<T>> for InverseTorque<T>where
T: NumLike,
Dividing a InverseTorque by a TimePerDistance returns a value of type InverseMomentum
impl<T> Div<TimePerDistance<T>> for InverseTorque<T>where
T: NumLike,
Dividing a InverseTorque by a TimePerDistance returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
/ operator.Source§impl<T> Div<TimePerDistance<T>> for Mass<T>where
T: NumLike,
Dividing a Mass by a TimePerDistance returns a value of type Momentum
impl<T> Div<TimePerDistance<T>> for Mass<T>where
T: NumLike,
Dividing a Mass by a TimePerDistance returns a value of type Momentum
Source§impl<T> Div<TimePerDistance<T>> for Momentum<T>where
T: NumLike,
Dividing a Momentum by a TimePerDistance returns a value of type Energy
impl<T> Div<TimePerDistance<T>> for Momentum<T>where
T: NumLike,
Dividing a Momentum by a TimePerDistance returns a value of type Energy
Source§impl<T> Div<TimePerDistance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a TimePerDistance returns a value of type Distance
impl<T> Div<TimePerDistance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a TimePerDistance returns a value of type Distance
Source§impl<T> Div<TimePerDistance<T>> for f32
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
impl<T> Div<TimePerDistance<T>> for f32
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
Source§impl<T> Div<TimePerDistance<T>> for f64
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
impl<T> Div<TimePerDistance<T>> for f64
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
Source§impl<T> Div<TimePerDistance<T>> for i32
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
impl<T> Div<TimePerDistance<T>> for i32
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
Source§impl<T> Div<TimePerDistance<T>> for i64
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
impl<T> Div<TimePerDistance<T>> for i64
Dividing a scalar value by a TimePerDistance unit value returns a value of type Velocity
Source§impl<T: NumLike> Div for &TimePerDistance<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 &TimePerDistance<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 TimePerDistance<T>
Dividing a unit value by another of the same type returns a scalar value
impl<T: NumLike> Div for TimePerDistance<T>
Dividing a unit value by another of the same type returns a scalar value
Source§impl<T: NumLike> DivAssign<T> for TimePerDistance<T>
Divides this unit value by a scalar
impl<T: NumLike> DivAssign<T> for TimePerDistance<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 TimePerDistance<T>
This struct implements the Hash trait if it’s member data type also has the Hash trait
impl<T> Hash for TimePerDistance<T>
This struct implements the Hash trait if it’s member data type also has the Hash trait
Source§impl<T> Mul<&Acceleration<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Acceleration returns a value of type Frequency
impl<T> Mul<&Acceleration<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Acceleration returns a value of type Frequency
Source§impl<T> Mul<&Acceleration<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Acceleration returns a value of type Frequency
impl<T> Mul<&Acceleration<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Acceleration returns a value of type Frequency
Source§impl<T> Mul<&Distance<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Distance returns a value of type Time
impl<T> Mul<&Distance<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Distance returns a value of type Time
Source§impl<T> Mul<&Distance<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Distance returns a value of type Time
impl<T> Mul<&Distance<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Distance returns a value of type Time
Source§impl<T> Mul<&Energy<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Energy returns a value of type Momentum
impl<T> Mul<&Energy<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Energy returns a value of type Momentum
Source§impl<T> Mul<&Energy<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Energy returns a value of type Momentum
impl<T> Mul<&Energy<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Energy returns a value of type Momentum
Source§impl<T> Mul<&Frequency<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Frequency returns a value of type InverseDistance
impl<T> Mul<&Frequency<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Frequency returns a value of type InverseDistance
Source§impl<T> Mul<&Frequency<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Frequency returns a value of type InverseDistance
impl<T> Mul<&Frequency<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Frequency returns a value of type InverseDistance
Source§impl<T> Mul<&InverseForce<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a InverseForce returns a value of type InversePower
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>
type Output = InversePower<T>
* operator.Source§impl<T> Mul<&InverseForce<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a InverseForce returns a value of type InversePower
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>
type Output = InversePower<T>
* operator.Source§impl<T> Mul<&InverseMass<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a InverseMass returns a value of type InverseMomentum
impl<T> Mul<&InverseMass<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a InverseMass returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
* operator.Source§impl<T> Mul<&InverseMass<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a InverseMass returns a value of type InverseMomentum
impl<T> Mul<&InverseMass<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a InverseMass returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
* operator.Source§impl<T> Mul<&InverseMomentum<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a InverseMomentum returns a value of type InverseEnergy
impl<T> Mul<&InverseMomentum<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a InverseMomentum returns a value of type InverseEnergy
Source§type Output = InverseEnergy<T>
type Output = InverseEnergy<T>
* operator.Source§impl<T> Mul<&InverseMomentum<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a InverseMomentum returns a value of type InverseEnergy
impl<T> Mul<&InverseMomentum<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a InverseMomentum returns a value of type InverseEnergy
Source§type Output = InverseEnergy<T>
type Output = InverseEnergy<T>
* operator.Source§impl<T> Mul<&Momentum<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Momentum returns a value of type Mass
impl<T> Mul<&Momentum<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Momentum returns a value of type Mass
Source§impl<T> Mul<&Momentum<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Momentum returns a value of type Mass
impl<T> Mul<&Momentum<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Momentum returns a value of type Mass
Source§impl<T> Mul<&Power<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Power returns a value of type Force
impl<T> Mul<&Power<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Power returns a value of type Force
Source§impl<T> Mul<&Power<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Power returns a value of type Force
impl<T> Mul<&Power<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Power returns a value of type Force
Source§impl<T> Mul<&T> for &TimePerDistance<T>where
T: NumLike,
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<&T> for &TimePerDistance<T>where
T: NumLike,
Multiplying a unit value by a scalar value returns a unit value
Source§impl<T> Mul<&T> for TimePerDistance<T>where
T: NumLike,
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<&T> for TimePerDistance<T>where
T: NumLike,
Multiplying a unit value by a scalar value returns a unit value
Source§impl<T> Mul<&Time<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Time returns a value of type InverseAcceleration
impl<T> Mul<&Time<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Time returns a value of type InverseAcceleration
Source§impl<T> Mul<&Time<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Time returns a value of type InverseAcceleration
impl<T> Mul<&Time<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Time returns a value of type InverseAcceleration
Source§impl<T> Mul<&TimePerDistance<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a TimePerDistance returns a value of type Frequency
impl<T> Mul<&TimePerDistance<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a TimePerDistance returns a value of type Frequency
Source§impl<T> Mul<&TimePerDistance<T>> for &Distance<T>where
T: NumLike,
Multiplying a Distance by a TimePerDistance returns a value of type Time
impl<T> Mul<&TimePerDistance<T>> for &Distance<T>where
T: NumLike,
Multiplying a Distance by a TimePerDistance returns a value of type Time
Source§impl<T> Mul<&TimePerDistance<T>> for &Energy<T>where
T: NumLike,
Multiplying a Energy by a TimePerDistance returns a value of type Momentum
impl<T> Mul<&TimePerDistance<T>> for &Energy<T>where
T: NumLike,
Multiplying a Energy by a TimePerDistance returns a value of type Momentum
Source§impl<T> Mul<&TimePerDistance<T>> for &Frequency<T>where
T: NumLike,
Multiplying a Frequency by a TimePerDistance returns a value of type InverseDistance
impl<T> Mul<&TimePerDistance<T>> for &Frequency<T>where
T: NumLike,
Multiplying a Frequency by a TimePerDistance returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<&TimePerDistance<T>> for &InverseForce<T>where
T: NumLike,
Multiplying a InverseForce by a TimePerDistance returns a value of type InversePower
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>
type Output = InversePower<T>
* operator.Source§impl<T> Mul<&TimePerDistance<T>> for &InverseMass<T>where
T: NumLike,
Multiplying a InverseMass by a TimePerDistance returns a value of type InverseMomentum
impl<T> Mul<&TimePerDistance<T>> for &InverseMass<T>where
T: NumLike,
Multiplying a InverseMass by a TimePerDistance returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
* operator.Source§impl<T> Mul<&TimePerDistance<T>> for &InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a TimePerDistance returns a value of type InverseEnergy
impl<T> Mul<&TimePerDistance<T>> for &InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a TimePerDistance returns a value of type InverseEnergy
Source§type Output = InverseEnergy<T>
type Output = InverseEnergy<T>
* operator.Source§impl<T> Mul<&TimePerDistance<T>> for &Momentum<T>where
T: NumLike,
Multiplying a Momentum by a TimePerDistance returns a value of type Mass
impl<T> Mul<&TimePerDistance<T>> for &Momentum<T>where
T: NumLike,
Multiplying a Momentum by a TimePerDistance returns a value of type Mass
Source§impl<T> Mul<&TimePerDistance<T>> for &Power<T>where
T: NumLike,
Multiplying a Power by a TimePerDistance returns a value of type Force
impl<T> Mul<&TimePerDistance<T>> for &Power<T>where
T: NumLike,
Multiplying a Power by a TimePerDistance returns a value of type Force
Source§impl<T> Mul<&TimePerDistance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a TimePerDistance returns a value of type InverseAcceleration
impl<T> Mul<&TimePerDistance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a TimePerDistance returns a value of type InverseAcceleration
Source§type Output = InverseAcceleration<T>
type Output = InverseAcceleration<T>
* operator.Source§impl<T> Mul<&TimePerDistance<T>> for &Torque<T>where
T: NumLike,
Multiplying a Torque by a TimePerDistance returns a value of type Momentum
impl<T> Mul<&TimePerDistance<T>> for &Torque<T>where
T: NumLike,
Multiplying a Torque by a TimePerDistance returns a value of type Momentum
Source§impl<T> Mul<&TimePerDistance<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a TimePerDistance returns a value of type Frequency
impl<T> Mul<&TimePerDistance<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a TimePerDistance returns a value of type Frequency
Source§impl<T> Mul<&TimePerDistance<T>> for Distance<T>where
T: NumLike,
Multiplying a Distance by a TimePerDistance returns a value of type Time
impl<T> Mul<&TimePerDistance<T>> for Distance<T>where
T: NumLike,
Multiplying a Distance by a TimePerDistance returns a value of type Time
Source§impl<T> Mul<&TimePerDistance<T>> for Energy<T>where
T: NumLike,
Multiplying a Energy by a TimePerDistance returns a value of type Momentum
impl<T> Mul<&TimePerDistance<T>> for Energy<T>where
T: NumLike,
Multiplying a Energy by a TimePerDistance returns a value of type Momentum
Source§impl<T> Mul<&TimePerDistance<T>> for Frequency<T>where
T: NumLike,
Multiplying a Frequency by a TimePerDistance returns a value of type InverseDistance
impl<T> Mul<&TimePerDistance<T>> for Frequency<T>where
T: NumLike,
Multiplying a Frequency by a TimePerDistance returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<&TimePerDistance<T>> for InverseForce<T>where
T: NumLike,
Multiplying a InverseForce by a TimePerDistance returns a value of type InversePower
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>
type Output = InversePower<T>
* operator.Source§impl<T> Mul<&TimePerDistance<T>> for InverseMass<T>where
T: NumLike,
Multiplying a InverseMass by a TimePerDistance returns a value of type InverseMomentum
impl<T> Mul<&TimePerDistance<T>> for InverseMass<T>where
T: NumLike,
Multiplying a InverseMass by a TimePerDistance returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
* operator.Source§impl<T> Mul<&TimePerDistance<T>> for InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a TimePerDistance returns a value of type InverseEnergy
impl<T> Mul<&TimePerDistance<T>> for InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a TimePerDistance returns a value of type InverseEnergy
Source§type Output = InverseEnergy<T>
type Output = InverseEnergy<T>
* operator.Source§impl<T> Mul<&TimePerDistance<T>> for Momentum<T>where
T: NumLike,
Multiplying a Momentum by a TimePerDistance returns a value of type Mass
impl<T> Mul<&TimePerDistance<T>> for Momentum<T>where
T: NumLike,
Multiplying a Momentum by a TimePerDistance returns a value of type Mass
Source§impl<T> Mul<&TimePerDistance<T>> for Power<T>where
T: NumLike,
Multiplying a Power by a TimePerDistance returns a value of type Force
impl<T> Mul<&TimePerDistance<T>> for Power<T>where
T: NumLike,
Multiplying a Power by a TimePerDistance returns a value of type Force
Source§impl<T> Mul<&TimePerDistance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a TimePerDistance returns a value of type InverseAcceleration
impl<T> Mul<&TimePerDistance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a TimePerDistance returns a value of type InverseAcceleration
Source§type Output = InverseAcceleration<T>
type Output = InverseAcceleration<T>
* operator.Source§impl<T> Mul<&TimePerDistance<T>> for Torque<T>where
T: NumLike,
Multiplying a Torque by a TimePerDistance returns a value of type Momentum
impl<T> Mul<&TimePerDistance<T>> for Torque<T>where
T: NumLike,
Multiplying a Torque by a TimePerDistance returns a value of type Momentum
Source§impl<T> Mul<&TimePerDistance<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<&TimePerDistance<T>> for f32
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<&TimePerDistance<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<&TimePerDistance<T>> for f64
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<&TimePerDistance<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<&TimePerDistance<T>> for i16
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<&TimePerDistance<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<&TimePerDistance<T>> for i32
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<&TimePerDistance<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<&TimePerDistance<T>> for i64
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<&TimePerDistance<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<&TimePerDistance<T>> for i8
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<&TimePerDistance<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<&TimePerDistance<T>> for u16
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<&TimePerDistance<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<&TimePerDistance<T>> for u32
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<&TimePerDistance<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<&TimePerDistance<T>> for u64
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<&TimePerDistance<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<&TimePerDistance<T>> for u8
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<&Torque<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Torque returns a value of type Momentum
impl<T> Mul<&Torque<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Torque returns a value of type Momentum
Source§impl<T> Mul<&Torque<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Torque returns a value of type Momentum
impl<T> Mul<&Torque<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Torque returns a value of type Momentum
Source§impl<T> Mul<Acceleration<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Acceleration returns a value of type Frequency
impl<T> Mul<Acceleration<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Acceleration returns a value of type Frequency
Source§impl<T> Mul<Acceleration<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Acceleration returns a value of type Frequency
impl<T> Mul<Acceleration<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Acceleration returns a value of type Frequency
Source§impl<T> Mul<Distance<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Distance returns a value of type Time
impl<T> Mul<Distance<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Distance returns a value of type Time
Source§impl<T> Mul<Distance<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Distance returns a value of type Time
impl<T> Mul<Distance<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Distance returns a value of type Time
Source§impl<T> Mul<Energy<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Energy returns a value of type Momentum
impl<T> Mul<Energy<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Energy returns a value of type Momentum
Source§impl<T> Mul<Energy<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Energy returns a value of type Momentum
impl<T> Mul<Energy<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Energy returns a value of type Momentum
Source§impl<T> Mul<Frequency<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Frequency returns a value of type InverseDistance
impl<T> Mul<Frequency<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Frequency returns a value of type InverseDistance
Source§impl<T> Mul<Frequency<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Frequency returns a value of type InverseDistance
impl<T> Mul<Frequency<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Frequency returns a value of type InverseDistance
Source§impl<T> Mul<InverseForce<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a InverseForce returns a value of type InversePower
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>
type Output = InversePower<T>
* operator.Source§impl<T> Mul<InverseForce<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a InverseForce returns a value of type InversePower
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>
type Output = InversePower<T>
* operator.Source§impl<T> Mul<InverseMass<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a InverseMass returns a value of type InverseMomentum
impl<T> Mul<InverseMass<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a InverseMass returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
* operator.Source§impl<T> Mul<InverseMass<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a InverseMass returns a value of type InverseMomentum
impl<T> Mul<InverseMass<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a InverseMass returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
* operator.Source§impl<T> Mul<InverseMomentum<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a InverseMomentum returns a value of type InverseEnergy
impl<T> Mul<InverseMomentum<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a InverseMomentum returns a value of type InverseEnergy
Source§type Output = InverseEnergy<T>
type Output = InverseEnergy<T>
* operator.Source§impl<T> Mul<InverseMomentum<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a InverseMomentum returns a value of type InverseEnergy
impl<T> Mul<InverseMomentum<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a InverseMomentum returns a value of type InverseEnergy
Source§type Output = InverseEnergy<T>
type Output = InverseEnergy<T>
* operator.Source§impl<T> Mul<Momentum<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Momentum returns a value of type Mass
impl<T> Mul<Momentum<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Momentum returns a value of type Mass
Source§impl<T> Mul<Momentum<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Momentum returns a value of type Mass
impl<T> Mul<Momentum<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Momentum returns a value of type Mass
Source§impl<T> Mul<Power<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Power returns a value of type Force
impl<T> Mul<Power<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Power returns a value of type Force
Source§impl<T> Mul<Power<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Power returns a value of type Force
impl<T> Mul<Power<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Power returns a value of type Force
Source§impl<T: NumLike> Mul<T> for &TimePerDistance<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 &TimePerDistance<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 TimePerDistance<T>
Multiplying a unit value by a scalar value returns a unit value
impl<T: NumLike> Mul<T> for TimePerDistance<T>
Multiplying a unit value by a scalar value returns a unit value
Source§impl<T> Mul<Time<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Time returns a value of type InverseAcceleration
impl<T> Mul<Time<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Time returns a value of type InverseAcceleration
Source§impl<T> Mul<Time<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Time returns a value of type InverseAcceleration
impl<T> Mul<Time<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Time returns a value of type InverseAcceleration
Source§impl<T> Mul<TimePerDistance<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a TimePerDistance returns a value of type Frequency
impl<T> Mul<TimePerDistance<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a TimePerDistance returns a value of type Frequency
Source§impl<T> Mul<TimePerDistance<T>> for &Distance<T>where
T: NumLike,
Multiplying a Distance by a TimePerDistance returns a value of type Time
impl<T> Mul<TimePerDistance<T>> for &Distance<T>where
T: NumLike,
Multiplying a Distance by a TimePerDistance returns a value of type Time
Source§impl<T> Mul<TimePerDistance<T>> for &Energy<T>where
T: NumLike,
Multiplying a Energy by a TimePerDistance returns a value of type Momentum
impl<T> Mul<TimePerDistance<T>> for &Energy<T>where
T: NumLike,
Multiplying a Energy by a TimePerDistance returns a value of type Momentum
Source§impl<T> Mul<TimePerDistance<T>> for &Frequency<T>where
T: NumLike,
Multiplying a Frequency by a TimePerDistance returns a value of type InverseDistance
impl<T> Mul<TimePerDistance<T>> for &Frequency<T>where
T: NumLike,
Multiplying a Frequency by a TimePerDistance returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<TimePerDistance<T>> for &InverseForce<T>where
T: NumLike,
Multiplying a InverseForce by a TimePerDistance returns a value of type InversePower
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>
type Output = InversePower<T>
* operator.Source§impl<T> Mul<TimePerDistance<T>> for &InverseMass<T>where
T: NumLike,
Multiplying a InverseMass by a TimePerDistance returns a value of type InverseMomentum
impl<T> Mul<TimePerDistance<T>> for &InverseMass<T>where
T: NumLike,
Multiplying a InverseMass by a TimePerDistance returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
* operator.Source§impl<T> Mul<TimePerDistance<T>> for &InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a TimePerDistance returns a value of type InverseEnergy
impl<T> Mul<TimePerDistance<T>> for &InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a TimePerDistance returns a value of type InverseEnergy
Source§type Output = InverseEnergy<T>
type Output = InverseEnergy<T>
* operator.Source§impl<T> Mul<TimePerDistance<T>> for &Momentum<T>where
T: NumLike,
Multiplying a Momentum by a TimePerDistance returns a value of type Mass
impl<T> Mul<TimePerDistance<T>> for &Momentum<T>where
T: NumLike,
Multiplying a Momentum by a TimePerDistance returns a value of type Mass
Source§impl<T> Mul<TimePerDistance<T>> for &Power<T>where
T: NumLike,
Multiplying a Power by a TimePerDistance returns a value of type Force
impl<T> Mul<TimePerDistance<T>> for &Power<T>where
T: NumLike,
Multiplying a Power by a TimePerDistance returns a value of type Force
Source§impl<T> Mul<TimePerDistance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a TimePerDistance returns a value of type InverseAcceleration
impl<T> Mul<TimePerDistance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a TimePerDistance returns a value of type InverseAcceleration
Source§type Output = InverseAcceleration<T>
type Output = InverseAcceleration<T>
* operator.Source§impl<T> Mul<TimePerDistance<T>> for &Torque<T>where
T: NumLike,
Multiplying a Torque by a TimePerDistance returns a value of type Momentum
impl<T> Mul<TimePerDistance<T>> for &Torque<T>where
T: NumLike,
Multiplying a Torque by a TimePerDistance returns a value of type Momentum
Source§impl<T> Mul<TimePerDistance<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a TimePerDistance returns a value of type Frequency
impl<T> Mul<TimePerDistance<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a TimePerDistance returns a value of type Frequency
Source§impl<T> Mul<TimePerDistance<T>> for Distance<T>where
T: NumLike,
Multiplying a Distance by a TimePerDistance returns a value of type Time
impl<T> Mul<TimePerDistance<T>> for Distance<T>where
T: NumLike,
Multiplying a Distance by a TimePerDistance returns a value of type Time
Source§impl<T> Mul<TimePerDistance<T>> for Energy<T>where
T: NumLike,
Multiplying a Energy by a TimePerDistance returns a value of type Momentum
impl<T> Mul<TimePerDistance<T>> for Energy<T>where
T: NumLike,
Multiplying a Energy by a TimePerDistance returns a value of type Momentum
Source§impl<T> Mul<TimePerDistance<T>> for Frequency<T>where
T: NumLike,
Multiplying a Frequency by a TimePerDistance returns a value of type InverseDistance
impl<T> Mul<TimePerDistance<T>> for Frequency<T>where
T: NumLike,
Multiplying a Frequency by a TimePerDistance returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<TimePerDistance<T>> for InverseForce<T>where
T: NumLike,
Multiplying a InverseForce by a TimePerDistance returns a value of type InversePower
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>
type Output = InversePower<T>
* operator.Source§impl<T> Mul<TimePerDistance<T>> for InverseMass<T>where
T: NumLike,
Multiplying a InverseMass by a TimePerDistance returns a value of type InverseMomentum
impl<T> Mul<TimePerDistance<T>> for InverseMass<T>where
T: NumLike,
Multiplying a InverseMass by a TimePerDistance returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
* operator.Source§impl<T> Mul<TimePerDistance<T>> for InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a TimePerDistance returns a value of type InverseEnergy
impl<T> Mul<TimePerDistance<T>> for InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a TimePerDistance returns a value of type InverseEnergy
Source§type Output = InverseEnergy<T>
type Output = InverseEnergy<T>
* operator.Source§impl<T> Mul<TimePerDistance<T>> for Momentum<T>where
T: NumLike,
Multiplying a Momentum by a TimePerDistance returns a value of type Mass
impl<T> Mul<TimePerDistance<T>> for Momentum<T>where
T: NumLike,
Multiplying a Momentum by a TimePerDistance returns a value of type Mass
Source§impl<T> Mul<TimePerDistance<T>> for Power<T>where
T: NumLike,
Multiplying a Power by a TimePerDistance returns a value of type Force
impl<T> Mul<TimePerDistance<T>> for Power<T>where
T: NumLike,
Multiplying a Power by a TimePerDistance returns a value of type Force
Source§impl<T> Mul<TimePerDistance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a TimePerDistance returns a value of type InverseAcceleration
impl<T> Mul<TimePerDistance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a TimePerDistance returns a value of type InverseAcceleration
Source§type Output = InverseAcceleration<T>
type Output = InverseAcceleration<T>
* operator.Source§impl<T> Mul<TimePerDistance<T>> for Torque<T>where
T: NumLike,
Multiplying a Torque by a TimePerDistance returns a value of type Momentum
impl<T> Mul<TimePerDistance<T>> for Torque<T>where
T: NumLike,
Multiplying a Torque by a TimePerDistance returns a value of type Momentum
Source§impl<T> Mul<TimePerDistance<T>> for f32
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<TimePerDistance<T>> for f32
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<TimePerDistance<T>> for f64
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<TimePerDistance<T>> for f64
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<TimePerDistance<T>> for i16
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<TimePerDistance<T>> for i16
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<TimePerDistance<T>> for i32
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<TimePerDistance<T>> for i32
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<TimePerDistance<T>> for i64
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<TimePerDistance<T>> for i64
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<TimePerDistance<T>> for i8
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<TimePerDistance<T>> for i8
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<TimePerDistance<T>> for u16
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<TimePerDistance<T>> for u16
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<TimePerDistance<T>> for u32
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<TimePerDistance<T>> for u32
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<TimePerDistance<T>> for u64
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<TimePerDistance<T>> for u64
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<TimePerDistance<T>> for u8
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<TimePerDistance<T>> for u8
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<Torque<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Torque returns a value of type Momentum
impl<T> Mul<Torque<T>> for &TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Torque returns a value of type Momentum
Source§impl<T> Mul<Torque<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Torque returns a value of type Momentum
impl<T> Mul<Torque<T>> for TimePerDistance<T>where
T: NumLike,
Multiplying a TimePerDistance by a Torque returns a value of type Momentum
Source§impl<T: NumLike> MulAssign<T> for TimePerDistance<T>
Multiplies this unit value by a scalar
impl<T: NumLike> MulAssign<T> for TimePerDistance<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 &TimePerDistance<T>
Flips the sign of this unit value (automatically clones the referenced data for convenient ergonomics)
impl<T: NumLike> Neg for &TimePerDistance<T>
Flips the sign of this unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T: NumLike> Neg for TimePerDistance<T>
Flips the sign of this unit value
impl<T: NumLike> Neg for TimePerDistance<T>
Flips the sign of this unit value
Source§impl<T> Ord for TimePerDistance<T>
This struct implements the Ord trait if it’s member data type also has the Ord trait
impl<T> Ord for TimePerDistance<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 TimePerDistance<T>
This struct implements the PartialEq trait if it’s member data type also has the PartialEq trait
impl<T> PartialEq for TimePerDistance<T>
This struct implements the PartialEq trait if it’s member data type also has the PartialEq trait
Source§impl<T> PartialOrd for TimePerDistance<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 TimePerDistance<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 &TimePerDistance<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 &TimePerDistance<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 TimePerDistance<T>
Subtracting two unit values of the same type returns a new unit value of the same type
impl<T: NumLike> Sub for TimePerDistance<T>
Subtracting two unit values of the same type returns a new unit value of the same type
Source§impl<T: NumLike> SubAssign for TimePerDistance<T>
Subtracts the given unit value from this unit value
impl<T: NumLike> SubAssign for TimePerDistance<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 TimePerDistance<T>
This struct implements the Copy marker trait if it’s member data type also has the Copy trait
impl<T> Eq for TimePerDistance<T>
This struct implements the core::cmp::Eq trait if it’s member data type also has the core::cmp::Eq trait