pub struct Acceleration<T: NumLike> {
pub mps2: T,
}Expand description
The acceleration unit type, defined as meters per second squared in SI units
Fields§
§mps2: TThe value of this Acceleration in meters per second squared
Implementations§
Source§impl<T> Acceleration<T>where
T: NumLike,
impl<T> Acceleration<T>where
T: NumLike,
Sourcepub fn unit_name() -> &'static str
pub fn unit_name() -> &'static str
Returns the standard unit name of acceleration: “meters per second squared”
Sourcepub fn unit_symbol() -> &'static str
pub fn unit_symbol() -> &'static str
Returns the abbreviated name or symbol of acceleration: “m/s²” for meters per second squared
Sourcepub fn from_mps2(mps2: T) -> Self
pub fn from_mps2(mps2: T) -> Self
Returns a new acceleration value from the given number of meters per second squared
§Arguments
mps2- Any number-like type, representing a quantity of meters per second squared
Sourcepub fn to_mps2(&self) -> T
pub fn to_mps2(&self) -> T
Returns a copy of this acceleration value in meters per second squared
Sourcepub fn from_meters_per_second_squared(meters_per_second_squared: T) -> Self
pub fn from_meters_per_second_squared(meters_per_second_squared: T) -> Self
Returns a new acceleration value from the given number of meters per second squared
§Arguments
meters_per_second_squared- Any number-like type, representing a quantity of meters per second squared
Sourcepub fn to_meters_per_second_squared(&self) -> T
pub fn to_meters_per_second_squared(&self) -> T
Returns a copy of this acceleration value in meters per second squared
Source§impl<T> Acceleration<T>
impl<T> Acceleration<T>
Sourcepub fn to_mmps2(&self) -> T
pub fn to_mmps2(&self) -> T
Returns a copy of this acceleration value in millimeters per second squared
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_mmps2(mmps2: T) -> Self
pub fn from_mmps2(mmps2: T) -> Self
Returns a new acceleration value from the given number of millimeters per second squared
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
mmps2- Any number-like type, representing a quantity of millimeters per second squared
Sourcepub fn to_kilometers_per_hour_squared(&self) -> T
pub fn to_kilometers_per_hour_squared(&self) -> T
Returns a copy of this acceleration value in kilometers per hour squared
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_kilometers_per_hour_squared(kilometers_per_hour_squared: T) -> Self
pub fn from_kilometers_per_hour_squared(kilometers_per_hour_squared: T) -> Self
Returns a new acceleration value from the given number of kilometers per hour squared
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
kilometers_per_hour_squared- Any number-like type, representing a quantity of kilometers per hour squared
Sourcepub fn to_kph2(&self) -> T
pub fn to_kph2(&self) -> T
Returns a copy of this acceleration value in kilometers per hour squared
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_kph2(kph2: T) -> Self
pub fn from_kph2(kph2: T) -> Self
Returns a new acceleration value from the given number of kilometers per hour squared
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
kph2- Any number-like type, representing a quantity of kilometers per hour squared
Trait Implementations§
Source§impl<T: NumLike> Add for &Acceleration<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 &Acceleration<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 Acceleration<T>
Adding two unit values of the same type returns a new unit value of the same type
impl<T: NumLike> Add for Acceleration<T>
Adding two unit values of the same type returns a new unit value of the same type
Source§impl<T: NumLike> AddAssign for Acceleration<T>
Adds the given unit value to this unit value
impl<T: NumLike> AddAssign for Acceleration<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 Acceleration<T>
impl<T: Clone + NumLike> Clone for Acceleration<T>
Source§fn clone(&self) -> Acceleration<T>
fn clone(&self) -> Acceleration<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 Acceleration<T>where
T: NumLike,
impl<T> Display for Acceleration<T>where
T: NumLike,
Source§impl<T> Div<&Acceleration<T>> for &AreaPerMass<T>where
T: NumLike,
Dividing a AreaPerMass by a Acceleration returns a value of type InversePressure
impl<T> Div<&Acceleration<T>> for &AreaPerMass<T>where
T: NumLike,
Dividing a AreaPerMass by a Acceleration returns a value of type InversePressure
Source§type Output = InversePressure<T>
type Output = InversePressure<T>
/ operator.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 &Frequency<T>where
T: NumLike,
Dividing a Frequency by a Acceleration returns a value of type TimePerDistance
impl<T> Div<&Acceleration<T>> for &Frequency<T>where
T: NumLike,
Dividing a Frequency by a Acceleration returns a value of type TimePerDistance
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
/ operator.Source§impl<T> Div<&Acceleration<T>> for &InverseMass<T>where
T: NumLike,
Dividing a InverseMass by a Acceleration returns a value of type InverseForce
impl<T> Div<&Acceleration<T>> for &InverseMass<T>where
T: NumLike,
Dividing a InverseMass by a Acceleration returns a value of type InverseForce
Source§type Output = InverseForce<T>
type Output = InverseForce<T>
/ operator.Source§impl<T> Div<&Acceleration<T>> for &InverseMomentum<T>where
T: NumLike,
Dividing a InverseMomentum by a Acceleration returns a value of type InversePower
impl<T> Div<&Acceleration<T>> for &InverseMomentum<T>where
T: NumLike,
Dividing a InverseMomentum by a Acceleration returns a value of type InversePower
Source§type Output = InversePower<T>
type Output = InversePower<T>
/ operator.Source§impl<T> Div<&Acceleration<T>> for &Power<T>where
T: NumLike,
Dividing a Power by a Acceleration returns a value of type Momentum
impl<T> Div<&Acceleration<T>> for &Power<T>where
T: NumLike,
Dividing a Power by a Acceleration returns a value of type Momentum
Source§impl<T> Div<&Acceleration<T>> for &Pressure<T>where
T: NumLike,
Dividing a Pressure by a Acceleration returns a value of type AreaDensity
impl<T> Div<&Acceleration<T>> for &Pressure<T>where
T: NumLike,
Dividing a Pressure by a Acceleration returns a value of type AreaDensity
Source§type Output = AreaDensity<T>
type Output = AreaDensity<T>
/ operator.Source§impl<T> Div<&Acceleration<T>> for &Velocity<T>where
T: NumLike,
Dividing a Velocity by a Acceleration returns a value of type Time
impl<T> Div<&Acceleration<T>> for &Velocity<T>where
T: NumLike,
Dividing a Velocity by a Acceleration returns a value of type Time
Source§impl<T> Div<&Acceleration<T>> for &f32
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
impl<T> Div<&Acceleration<T>> for &f32
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
Source§type Output = InverseAcceleration<T>
type Output = InverseAcceleration<T>
/ operator.Source§impl<T> Div<&Acceleration<T>> for &f64
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
impl<T> Div<&Acceleration<T>> for &f64
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
Source§type Output = InverseAcceleration<T>
type Output = InverseAcceleration<T>
/ operator.Source§impl<T> Div<&Acceleration<T>> for &i32
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
impl<T> Div<&Acceleration<T>> for &i32
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
Source§type Output = InverseAcceleration<T>
type Output = InverseAcceleration<T>
/ operator.Source§impl<T> Div<&Acceleration<T>> for &i64
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
impl<T> Div<&Acceleration<T>> for &i64
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
Source§type Output = InverseAcceleration<T>
type Output = InverseAcceleration<T>
/ operator.Source§impl<T> Div<&Acceleration<T>> for AreaPerMass<T>where
T: NumLike,
Dividing a AreaPerMass by a Acceleration returns a value of type InversePressure
impl<T> Div<&Acceleration<T>> for AreaPerMass<T>where
T: NumLike,
Dividing a AreaPerMass by a Acceleration returns a value of type InversePressure
Source§type Output = InversePressure<T>
type Output = InversePressure<T>
/ operator.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 Frequency<T>where
T: NumLike,
Dividing a Frequency by a Acceleration returns a value of type TimePerDistance
impl<T> Div<&Acceleration<T>> for Frequency<T>where
T: NumLike,
Dividing a Frequency by a Acceleration returns a value of type TimePerDistance
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
/ operator.Source§impl<T> Div<&Acceleration<T>> for InverseMass<T>where
T: NumLike,
Dividing a InverseMass by a Acceleration returns a value of type InverseForce
impl<T> Div<&Acceleration<T>> for InverseMass<T>where
T: NumLike,
Dividing a InverseMass by a Acceleration returns a value of type InverseForce
Source§type Output = InverseForce<T>
type Output = InverseForce<T>
/ operator.Source§impl<T> Div<&Acceleration<T>> for InverseMomentum<T>where
T: NumLike,
Dividing a InverseMomentum by a Acceleration returns a value of type InversePower
impl<T> Div<&Acceleration<T>> for InverseMomentum<T>where
T: NumLike,
Dividing a InverseMomentum by a Acceleration returns a value of type InversePower
Source§type Output = InversePower<T>
type Output = InversePower<T>
/ operator.Source§impl<T> Div<&Acceleration<T>> for Power<T>where
T: NumLike,
Dividing a Power by a Acceleration returns a value of type Momentum
impl<T> Div<&Acceleration<T>> for Power<T>where
T: NumLike,
Dividing a Power by a Acceleration returns a value of type Momentum
Source§impl<T> Div<&Acceleration<T>> for Pressure<T>where
T: NumLike,
Dividing a Pressure by a Acceleration returns a value of type AreaDensity
impl<T> Div<&Acceleration<T>> for Pressure<T>where
T: NumLike,
Dividing a Pressure by a Acceleration returns a value of type AreaDensity
Source§type Output = AreaDensity<T>
type Output = AreaDensity<T>
/ operator.Source§impl<T> Div<&Acceleration<T>> for Velocity<T>where
T: NumLike,
Dividing a Velocity by a Acceleration returns a value of type Time
impl<T> Div<&Acceleration<T>> for Velocity<T>where
T: NumLike,
Dividing a Velocity by a Acceleration returns a value of type Time
Source§impl<T> Div<&Acceleration<T>> for f32
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
impl<T> Div<&Acceleration<T>> for f32
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
Source§type Output = InverseAcceleration<T>
type Output = InverseAcceleration<T>
/ operator.Source§impl<T> Div<&Acceleration<T>> for f64
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
impl<T> Div<&Acceleration<T>> for f64
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
Source§type Output = InverseAcceleration<T>
type Output = InverseAcceleration<T>
/ operator.Source§impl<T> Div<&Acceleration<T>> for i32
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
impl<T> Div<&Acceleration<T>> for i32
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
Source§type Output = InverseAcceleration<T>
type Output = InverseAcceleration<T>
/ operator.Source§impl<T> Div<&Acceleration<T>> for i64
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
impl<T> Div<&Acceleration<T>> for i64
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
Source§type Output = InverseAcceleration<T>
type Output = InverseAcceleration<T>
/ operator.Source§impl<T> Div<&AreaPerMass<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a AreaPerMass returns a value of type Pressure
impl<T> Div<&AreaPerMass<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a AreaPerMass returns a value of type Pressure
Source§impl<T> Div<&AreaPerMass<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a AreaPerMass returns a value of type Pressure
impl<T> Div<&AreaPerMass<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a AreaPerMass returns a value of type Pressure
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 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<&Frequency<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Frequency returns a value of type Velocity
impl<T> Div<&Frequency<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Frequency returns a value of type Velocity
Source§impl<T> Div<&Frequency<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Frequency returns a value of type Velocity
impl<T> Div<&Frequency<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Frequency returns a value of type Velocity
Source§impl<T> Div<&InverseMass<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a InverseMass returns a value of type Force
impl<T> Div<&InverseMass<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a InverseMass returns a value of type Force
Source§impl<T> Div<&InverseMass<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a InverseMass returns a value of type Force
impl<T> Div<&InverseMass<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a InverseMass returns a value of type Force
Source§impl<T> Div<&InverseMomentum<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a InverseMomentum returns a value of type Power
impl<T> Div<&InverseMomentum<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a InverseMomentum returns a value of type Power
Source§impl<T> Div<&InverseMomentum<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a InverseMomentum returns a value of type Power
impl<T> Div<&InverseMomentum<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a InverseMomentum returns a value of type Power
Source§impl<T> Div<&Power<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Power returns a value of type InverseMomentum
impl<T> Div<&Power<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Power returns a value of type InverseMomentum
Source§impl<T> Div<&Power<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Power returns a value of type InverseMomentum
impl<T> Div<&Power<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Power returns a value of type InverseMomentum
Source§impl<T> Div<&Pressure<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Pressure returns a value of type AreaPerMass
impl<T> Div<&Pressure<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Pressure returns a value of type AreaPerMass
Source§impl<T> Div<&Pressure<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Pressure returns a value of type AreaPerMass
impl<T> Div<&Pressure<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Pressure returns a value of type AreaPerMass
Source§impl<T> Div<&T> for &Acceleration<T>where
T: NumLike,
Dividing a unit value by a scalar value returns a unit value
impl<T> Div<&T> for &Acceleration<T>where
T: NumLike,
Dividing a unit value by a scalar value returns a unit value
Source§impl<T> Div<&T> for Acceleration<T>where
T: NumLike,
Dividing a unit value by a scalar value returns a unit value
impl<T> Div<&T> for Acceleration<T>where
T: NumLike,
Dividing a unit value by a scalar value returns a unit value
Source§impl<T> Div<&Velocity<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Velocity returns a value of type Frequency
impl<T> Div<&Velocity<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Velocity returns a value of type Frequency
Source§impl<T> Div<&Velocity<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Velocity returns a value of type Frequency
impl<T> Div<&Velocity<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Velocity returns a value of type Frequency
Source§impl<T> Div<Acceleration<T>> for &AreaPerMass<T>where
T: NumLike,
Dividing a AreaPerMass by a Acceleration returns a value of type InversePressure
impl<T> Div<Acceleration<T>> for &AreaPerMass<T>where
T: NumLike,
Dividing a AreaPerMass by a Acceleration returns a value of type InversePressure
Source§type Output = InversePressure<T>
type Output = InversePressure<T>
/ operator.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 &Frequency<T>where
T: NumLike,
Dividing a Frequency by a Acceleration returns a value of type TimePerDistance
impl<T> Div<Acceleration<T>> for &Frequency<T>where
T: NumLike,
Dividing a Frequency by a Acceleration returns a value of type TimePerDistance
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
/ operator.Source§impl<T> Div<Acceleration<T>> for &InverseMass<T>where
T: NumLike,
Dividing a InverseMass by a Acceleration returns a value of type InverseForce
impl<T> Div<Acceleration<T>> for &InverseMass<T>where
T: NumLike,
Dividing a InverseMass by a Acceleration returns a value of type InverseForce
Source§type Output = InverseForce<T>
type Output = InverseForce<T>
/ operator.Source§impl<T> Div<Acceleration<T>> for &InverseMomentum<T>where
T: NumLike,
Dividing a InverseMomentum by a Acceleration returns a value of type InversePower
impl<T> Div<Acceleration<T>> for &InverseMomentum<T>where
T: NumLike,
Dividing a InverseMomentum by a Acceleration returns a value of type InversePower
Source§type Output = InversePower<T>
type Output = InversePower<T>
/ operator.Source§impl<T> Div<Acceleration<T>> for &Power<T>where
T: NumLike,
Dividing a Power by a Acceleration returns a value of type Momentum
impl<T> Div<Acceleration<T>> for &Power<T>where
T: NumLike,
Dividing a Power by a Acceleration returns a value of type Momentum
Source§impl<T> Div<Acceleration<T>> for &Pressure<T>where
T: NumLike,
Dividing a Pressure by a Acceleration returns a value of type AreaDensity
impl<T> Div<Acceleration<T>> for &Pressure<T>where
T: NumLike,
Dividing a Pressure by a Acceleration returns a value of type AreaDensity
Source§type Output = AreaDensity<T>
type Output = AreaDensity<T>
/ operator.Source§impl<T> Div<Acceleration<T>> for &Velocity<T>where
T: NumLike,
Dividing a Velocity by a Acceleration returns a value of type Time
impl<T> Div<Acceleration<T>> for &Velocity<T>where
T: NumLike,
Dividing a Velocity by a Acceleration returns a value of type Time
Source§impl<T> Div<Acceleration<T>> for &f32
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
impl<T> Div<Acceleration<T>> for &f32
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
Source§type Output = InverseAcceleration<T>
type Output = InverseAcceleration<T>
/ operator.Source§impl<T> Div<Acceleration<T>> for &f64
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
impl<T> Div<Acceleration<T>> for &f64
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
Source§type Output = InverseAcceleration<T>
type Output = InverseAcceleration<T>
/ operator.Source§impl<T> Div<Acceleration<T>> for &i32
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
impl<T> Div<Acceleration<T>> for &i32
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
Source§type Output = InverseAcceleration<T>
type Output = InverseAcceleration<T>
/ operator.Source§impl<T> Div<Acceleration<T>> for &i64
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
impl<T> Div<Acceleration<T>> for &i64
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
Source§type Output = InverseAcceleration<T>
type Output = InverseAcceleration<T>
/ operator.Source§impl<T> Div<Acceleration<T>> for AreaPerMass<T>where
T: NumLike,
Dividing a AreaPerMass by a Acceleration returns a value of type InversePressure
impl<T> Div<Acceleration<T>> for AreaPerMass<T>where
T: NumLike,
Dividing a AreaPerMass by a Acceleration returns a value of type InversePressure
Source§type Output = InversePressure<T>
type Output = InversePressure<T>
/ operator.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 Frequency<T>where
T: NumLike,
Dividing a Frequency by a Acceleration returns a value of type TimePerDistance
impl<T> Div<Acceleration<T>> for Frequency<T>where
T: NumLike,
Dividing a Frequency by a Acceleration returns a value of type TimePerDistance
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
/ operator.Source§impl<T> Div<Acceleration<T>> for InverseMass<T>where
T: NumLike,
Dividing a InverseMass by a Acceleration returns a value of type InverseForce
impl<T> Div<Acceleration<T>> for InverseMass<T>where
T: NumLike,
Dividing a InverseMass by a Acceleration returns a value of type InverseForce
Source§type Output = InverseForce<T>
type Output = InverseForce<T>
/ operator.Source§impl<T> Div<Acceleration<T>> for InverseMomentum<T>where
T: NumLike,
Dividing a InverseMomentum by a Acceleration returns a value of type InversePower
impl<T> Div<Acceleration<T>> for InverseMomentum<T>where
T: NumLike,
Dividing a InverseMomentum by a Acceleration returns a value of type InversePower
Source§type Output = InversePower<T>
type Output = InversePower<T>
/ operator.Source§impl<T> Div<Acceleration<T>> for Power<T>where
T: NumLike,
Dividing a Power by a Acceleration returns a value of type Momentum
impl<T> Div<Acceleration<T>> for Power<T>where
T: NumLike,
Dividing a Power by a Acceleration returns a value of type Momentum
Source§impl<T> Div<Acceleration<T>> for Pressure<T>where
T: NumLike,
Dividing a Pressure by a Acceleration returns a value of type AreaDensity
impl<T> Div<Acceleration<T>> for Pressure<T>where
T: NumLike,
Dividing a Pressure by a Acceleration returns a value of type AreaDensity
Source§type Output = AreaDensity<T>
type Output = AreaDensity<T>
/ operator.Source§impl<T> Div<Acceleration<T>> for Velocity<T>where
T: NumLike,
Dividing a Velocity by a Acceleration returns a value of type Time
impl<T> Div<Acceleration<T>> for Velocity<T>where
T: NumLike,
Dividing a Velocity by a Acceleration returns a value of type Time
Source§impl<T> Div<Acceleration<T>> for f32
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
impl<T> Div<Acceleration<T>> for f32
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
Source§type Output = InverseAcceleration<T>
type Output = InverseAcceleration<T>
/ operator.Source§impl<T> Div<Acceleration<T>> for f64
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
impl<T> Div<Acceleration<T>> for f64
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
Source§type Output = InverseAcceleration<T>
type Output = InverseAcceleration<T>
/ operator.Source§impl<T> Div<Acceleration<T>> for i32
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
impl<T> Div<Acceleration<T>> for i32
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
Source§type Output = InverseAcceleration<T>
type Output = InverseAcceleration<T>
/ operator.Source§impl<T> Div<Acceleration<T>> for i64
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
impl<T> Div<Acceleration<T>> for i64
Dividing a scalar value by a Acceleration unit value returns a value of type InverseAcceleration
Source§type Output = InverseAcceleration<T>
type Output = InverseAcceleration<T>
/ operator.Source§impl<T> Div<AreaPerMass<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a AreaPerMass returns a value of type Pressure
impl<T> Div<AreaPerMass<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a AreaPerMass returns a value of type Pressure
Source§impl<T> Div<AreaPerMass<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a AreaPerMass returns a value of type Pressure
impl<T> Div<AreaPerMass<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a AreaPerMass returns a value of type Pressure
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 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<Frequency<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Frequency returns a value of type Velocity
impl<T> Div<Frequency<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Frequency returns a value of type Velocity
Source§impl<T> Div<Frequency<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Frequency returns a value of type Velocity
impl<T> Div<Frequency<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Frequency returns a value of type Velocity
Source§impl<T> Div<InverseMass<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a InverseMass returns a value of type Force
impl<T> Div<InverseMass<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a InverseMass returns a value of type Force
Source§impl<T> Div<InverseMass<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a InverseMass returns a value of type Force
impl<T> Div<InverseMass<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a InverseMass returns a value of type Force
Source§impl<T> Div<InverseMomentum<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a InverseMomentum returns a value of type Power
impl<T> Div<InverseMomentum<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a InverseMomentum returns a value of type Power
Source§impl<T> Div<InverseMomentum<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a InverseMomentum returns a value of type Power
impl<T> Div<InverseMomentum<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a InverseMomentum returns a value of type Power
Source§impl<T> Div<Power<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Power returns a value of type InverseMomentum
impl<T> Div<Power<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Power returns a value of type InverseMomentum
Source§impl<T> Div<Power<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Power returns a value of type InverseMomentum
impl<T> Div<Power<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Power returns a value of type InverseMomentum
Source§impl<T> Div<Pressure<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Pressure returns a value of type AreaPerMass
impl<T> Div<Pressure<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Pressure returns a value of type AreaPerMass
Source§impl<T> Div<Pressure<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Pressure returns a value of type AreaPerMass
impl<T> Div<Pressure<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Pressure returns a value of type AreaPerMass
Source§impl<T: NumLike> Div<T> for &Acceleration<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 &Acceleration<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 Acceleration<T>
Dividing a unit value by a scalar value returns a unit value
impl<T: NumLike> Div<T> for Acceleration<T>
Dividing a unit value by a scalar value returns a unit value
Source§impl<T> Div<Velocity<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Velocity returns a value of type Frequency
impl<T> Div<Velocity<T>> for &Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Velocity returns a value of type Frequency
Source§impl<T> Div<Velocity<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Velocity returns a value of type Frequency
impl<T> Div<Velocity<T>> for Acceleration<T>where
T: NumLike,
Dividing a Acceleration by a Velocity returns a value of type Frequency
Source§impl<T: NumLike> Div for &Acceleration<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 &Acceleration<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 Acceleration<T>
Dividing a unit value by another of the same type returns a scalar value
impl<T: NumLike> Div for Acceleration<T>
Dividing a unit value by another of the same type returns a scalar value
Source§impl<T: NumLike> DivAssign<T> for Acceleration<T>
Divides this unit value by a scalar
impl<T: NumLike> DivAssign<T> for Acceleration<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 Acceleration<T>
This struct implements the Hash trait if it’s member data type also has the Hash trait
impl<T> Hash for Acceleration<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 &AreaDensity<T>where
T: NumLike,
Multiplying a AreaDensity by a Acceleration returns a value of type Pressure
impl<T> Mul<&Acceleration<T>> for &AreaDensity<T>where
T: NumLike,
Multiplying a AreaDensity by a Acceleration returns a value of type Pressure
Source§impl<T> Mul<&Acceleration<T>> for &InverseAbsorbedDose<T>where
T: NumLike,
Multiplying a InverseAbsorbedDose by a Acceleration returns a value of type InverseDistance
impl<T> Mul<&Acceleration<T>> for &InverseAbsorbedDose<T>where
T: NumLike,
Multiplying a InverseAbsorbedDose by a Acceleration returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<&Acceleration<T>> for &InverseDoseEquivalent<T>where
T: NumLike,
Multiplying a InverseDoseEquivalent by a Acceleration returns a value of type InverseDistance
impl<T> Mul<&Acceleration<T>> for &InverseDoseEquivalent<T>where
T: NumLike,
Multiplying a InverseDoseEquivalent by a Acceleration returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<&Acceleration<T>> for &InverseForce<T>where
T: NumLike,
Multiplying a InverseForce by a Acceleration returns a value of type InverseMass
impl<T> Mul<&Acceleration<T>> for &InverseForce<T>where
T: NumLike,
Multiplying a InverseForce by a Acceleration returns a value of type InverseMass
Source§type Output = InverseMass<T>
type Output = InverseMass<T>
* operator.Source§impl<T> Mul<&Acceleration<T>> for &InversePower<T>where
T: NumLike,
Multiplying a InversePower by a Acceleration returns a value of type InverseMomentum
impl<T> Mul<&Acceleration<T>> for &InversePower<T>where
T: NumLike,
Multiplying a InversePower by a Acceleration returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
* operator.Source§impl<T> Mul<&Acceleration<T>> for &InversePressure<T>where
T: NumLike,
Multiplying a InversePressure by a Acceleration returns a value of type AreaPerMass
impl<T> Mul<&Acceleration<T>> for &InversePressure<T>where
T: NumLike,
Multiplying a InversePressure by a Acceleration returns a value of type AreaPerMass
Source§type Output = AreaPerMass<T>
type Output = AreaPerMass<T>
* operator.Source§impl<T> Mul<&Acceleration<T>> for &Mass<T>where
T: NumLike,
Multiplying a Mass by a Acceleration returns a value of type Force
impl<T> Mul<&Acceleration<T>> for &Mass<T>where
T: NumLike,
Multiplying a Mass by a Acceleration returns a value of type Force
Source§impl<T> Mul<&Acceleration<T>> for &Momentum<T>where
T: NumLike,
Multiplying a Momentum by a Acceleration returns a value of type Power
impl<T> Mul<&Acceleration<T>> for &Momentum<T>where
T: NumLike,
Multiplying a Momentum by a Acceleration returns a value of type Power
Source§impl<T> Mul<&Acceleration<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Acceleration returns a value of type Velocity
impl<T> Mul<&Acceleration<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Acceleration returns a value of type Velocity
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 AreaDensity<T>where
T: NumLike,
Multiplying a AreaDensity by a Acceleration returns a value of type Pressure
impl<T> Mul<&Acceleration<T>> for AreaDensity<T>where
T: NumLike,
Multiplying a AreaDensity by a Acceleration returns a value of type Pressure
Source§impl<T> Mul<&Acceleration<T>> for InverseAbsorbedDose<T>where
T: NumLike,
Multiplying a InverseAbsorbedDose by a Acceleration returns a value of type InverseDistance
impl<T> Mul<&Acceleration<T>> for InverseAbsorbedDose<T>where
T: NumLike,
Multiplying a InverseAbsorbedDose by a Acceleration returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<&Acceleration<T>> for InverseDoseEquivalent<T>where
T: NumLike,
Multiplying a InverseDoseEquivalent by a Acceleration returns a value of type InverseDistance
impl<T> Mul<&Acceleration<T>> for InverseDoseEquivalent<T>where
T: NumLike,
Multiplying a InverseDoseEquivalent by a Acceleration returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<&Acceleration<T>> for InverseForce<T>where
T: NumLike,
Multiplying a InverseForce by a Acceleration returns a value of type InverseMass
impl<T> Mul<&Acceleration<T>> for InverseForce<T>where
T: NumLike,
Multiplying a InverseForce by a Acceleration returns a value of type InverseMass
Source§type Output = InverseMass<T>
type Output = InverseMass<T>
* operator.Source§impl<T> Mul<&Acceleration<T>> for InversePower<T>where
T: NumLike,
Multiplying a InversePower by a Acceleration returns a value of type InverseMomentum
impl<T> Mul<&Acceleration<T>> for InversePower<T>where
T: NumLike,
Multiplying a InversePower by a Acceleration returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
* operator.Source§impl<T> Mul<&Acceleration<T>> for InversePressure<T>where
T: NumLike,
Multiplying a InversePressure by a Acceleration returns a value of type AreaPerMass
impl<T> Mul<&Acceleration<T>> for InversePressure<T>where
T: NumLike,
Multiplying a InversePressure by a Acceleration returns a value of type AreaPerMass
Source§type Output = AreaPerMass<T>
type Output = AreaPerMass<T>
* operator.Source§impl<T> Mul<&Acceleration<T>> for Mass<T>where
T: NumLike,
Multiplying a Mass by a Acceleration returns a value of type Force
impl<T> Mul<&Acceleration<T>> for Mass<T>where
T: NumLike,
Multiplying a Mass by a Acceleration returns a value of type Force
Source§impl<T> Mul<&Acceleration<T>> for Momentum<T>where
T: NumLike,
Multiplying a Momentum by a Acceleration returns a value of type Power
impl<T> Mul<&Acceleration<T>> for Momentum<T>where
T: NumLike,
Multiplying a Momentum by a Acceleration returns a value of type Power
Source§impl<T> Mul<&Acceleration<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Acceleration returns a value of type Velocity
impl<T> Mul<&Acceleration<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Acceleration returns a value of type Velocity
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 f32
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
impl<T> Mul<&Acceleration<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 = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<&Acceleration<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<&Acceleration<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 = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<&Acceleration<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<&Acceleration<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 = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<&Acceleration<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<&Acceleration<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 = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<&Acceleration<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<&Acceleration<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 = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<&Acceleration<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<&Acceleration<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 = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<&Acceleration<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<&Acceleration<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 = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<&Acceleration<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<&Acceleration<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 = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<&Acceleration<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<&Acceleration<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 = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<&Acceleration<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<&Acceleration<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 = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<&AreaDensity<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a AreaDensity returns a value of type Pressure
impl<T> Mul<&AreaDensity<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a AreaDensity returns a value of type Pressure
Source§impl<T> Mul<&AreaDensity<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a AreaDensity returns a value of type Pressure
impl<T> Mul<&AreaDensity<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a AreaDensity returns a value of type Pressure
Source§impl<T> Mul<&InverseAbsorbedDose<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseAbsorbedDose returns a value of type InverseDistance
impl<T> Mul<&InverseAbsorbedDose<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseAbsorbedDose returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<&InverseAbsorbedDose<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseAbsorbedDose returns a value of type InverseDistance
impl<T> Mul<&InverseAbsorbedDose<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseAbsorbedDose returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<&InverseDoseEquivalent<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseDoseEquivalent returns a value of type InverseDistance
impl<T> Mul<&InverseDoseEquivalent<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseDoseEquivalent returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<&InverseDoseEquivalent<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseDoseEquivalent returns a value of type InverseDistance
impl<T> Mul<&InverseDoseEquivalent<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseDoseEquivalent returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<&InverseForce<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseForce returns a value of type InverseMass
impl<T> Mul<&InverseForce<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseForce returns a value of type InverseMass
Source§type Output = InverseMass<T>
type Output = InverseMass<T>
* operator.Source§impl<T> Mul<&InverseForce<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseForce returns a value of type InverseMass
impl<T> Mul<&InverseForce<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseForce returns a value of type InverseMass
Source§type Output = InverseMass<T>
type Output = InverseMass<T>
* operator.Source§impl<T> Mul<&InversePower<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InversePower returns a value of type InverseMomentum
impl<T> Mul<&InversePower<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InversePower returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
* operator.Source§impl<T> Mul<&InversePower<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InversePower returns a value of type InverseMomentum
impl<T> Mul<&InversePower<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InversePower returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
* operator.Source§impl<T> Mul<&InversePressure<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InversePressure returns a value of type AreaPerMass
impl<T> Mul<&InversePressure<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InversePressure returns a value of type AreaPerMass
Source§type Output = AreaPerMass<T>
type Output = AreaPerMass<T>
* operator.Source§impl<T> Mul<&InversePressure<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InversePressure returns a value of type AreaPerMass
impl<T> Mul<&InversePressure<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InversePressure returns a value of type AreaPerMass
Source§type Output = AreaPerMass<T>
type Output = AreaPerMass<T>
* operator.Source§impl<T> Mul<&Mass<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Mass returns a value of type Force
impl<T> Mul<&Mass<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Mass returns a value of type Force
Source§impl<T> Mul<&Mass<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Mass returns a value of type Force
impl<T> Mul<&Mass<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Mass returns a value of type Force
Source§impl<T> Mul<&Momentum<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Momentum returns a value of type Power
impl<T> Mul<&Momentum<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Momentum returns a value of type Power
Source§impl<T> Mul<&Momentum<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Momentum returns a value of type Power
impl<T> Mul<&Momentum<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Momentum returns a value of type Power
Source§impl<T> Mul<&T> for &Acceleration<T>where
T: NumLike,
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<&T> for &Acceleration<T>where
T: NumLike,
Multiplying a unit value by a scalar value returns a unit value
Source§impl<T> Mul<&T> for Acceleration<T>where
T: NumLike,
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<&T> for Acceleration<T>where
T: NumLike,
Multiplying a unit value by a scalar value returns a unit value
Source§impl<T> Mul<&Time<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Time returns a value of type Velocity
impl<T> Mul<&Time<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Time returns a value of type Velocity
Source§impl<T> Mul<&Time<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Time returns a value of type Velocity
impl<T> Mul<&Time<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Time returns a value of type Velocity
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 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<Acceleration<T>> for &AreaDensity<T>where
T: NumLike,
Multiplying a AreaDensity by a Acceleration returns a value of type Pressure
impl<T> Mul<Acceleration<T>> for &AreaDensity<T>where
T: NumLike,
Multiplying a AreaDensity by a Acceleration returns a value of type Pressure
Source§impl<T> Mul<Acceleration<T>> for &InverseAbsorbedDose<T>where
T: NumLike,
Multiplying a InverseAbsorbedDose by a Acceleration returns a value of type InverseDistance
impl<T> Mul<Acceleration<T>> for &InverseAbsorbedDose<T>where
T: NumLike,
Multiplying a InverseAbsorbedDose by a Acceleration returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<Acceleration<T>> for &InverseDoseEquivalent<T>where
T: NumLike,
Multiplying a InverseDoseEquivalent by a Acceleration returns a value of type InverseDistance
impl<T> Mul<Acceleration<T>> for &InverseDoseEquivalent<T>where
T: NumLike,
Multiplying a InverseDoseEquivalent by a Acceleration returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<Acceleration<T>> for &InverseForce<T>where
T: NumLike,
Multiplying a InverseForce by a Acceleration returns a value of type InverseMass
impl<T> Mul<Acceleration<T>> for &InverseForce<T>where
T: NumLike,
Multiplying a InverseForce by a Acceleration returns a value of type InverseMass
Source§type Output = InverseMass<T>
type Output = InverseMass<T>
* operator.Source§impl<T> Mul<Acceleration<T>> for &InversePower<T>where
T: NumLike,
Multiplying a InversePower by a Acceleration returns a value of type InverseMomentum
impl<T> Mul<Acceleration<T>> for &InversePower<T>where
T: NumLike,
Multiplying a InversePower by a Acceleration returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
* operator.Source§impl<T> Mul<Acceleration<T>> for &InversePressure<T>where
T: NumLike,
Multiplying a InversePressure by a Acceleration returns a value of type AreaPerMass
impl<T> Mul<Acceleration<T>> for &InversePressure<T>where
T: NumLike,
Multiplying a InversePressure by a Acceleration returns a value of type AreaPerMass
Source§type Output = AreaPerMass<T>
type Output = AreaPerMass<T>
* operator.Source§impl<T> Mul<Acceleration<T>> for &Mass<T>where
T: NumLike,
Multiplying a Mass by a Acceleration returns a value of type Force
impl<T> Mul<Acceleration<T>> for &Mass<T>where
T: NumLike,
Multiplying a Mass by a Acceleration returns a value of type Force
Source§impl<T> Mul<Acceleration<T>> for &Momentum<T>where
T: NumLike,
Multiplying a Momentum by a Acceleration returns a value of type Power
impl<T> Mul<Acceleration<T>> for &Momentum<T>where
T: NumLike,
Multiplying a Momentum by a Acceleration returns a value of type Power
Source§impl<T> Mul<Acceleration<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Acceleration returns a value of type Velocity
impl<T> Mul<Acceleration<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Acceleration returns a value of type Velocity
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 AreaDensity<T>where
T: NumLike,
Multiplying a AreaDensity by a Acceleration returns a value of type Pressure
impl<T> Mul<Acceleration<T>> for AreaDensity<T>where
T: NumLike,
Multiplying a AreaDensity by a Acceleration returns a value of type Pressure
Source§impl<T> Mul<Acceleration<T>> for InverseAbsorbedDose<T>where
T: NumLike,
Multiplying a InverseAbsorbedDose by a Acceleration returns a value of type InverseDistance
impl<T> Mul<Acceleration<T>> for InverseAbsorbedDose<T>where
T: NumLike,
Multiplying a InverseAbsorbedDose by a Acceleration returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<Acceleration<T>> for InverseDoseEquivalent<T>where
T: NumLike,
Multiplying a InverseDoseEquivalent by a Acceleration returns a value of type InverseDistance
impl<T> Mul<Acceleration<T>> for InverseDoseEquivalent<T>where
T: NumLike,
Multiplying a InverseDoseEquivalent by a Acceleration returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<Acceleration<T>> for InverseForce<T>where
T: NumLike,
Multiplying a InverseForce by a Acceleration returns a value of type InverseMass
impl<T> Mul<Acceleration<T>> for InverseForce<T>where
T: NumLike,
Multiplying a InverseForce by a Acceleration returns a value of type InverseMass
Source§type Output = InverseMass<T>
type Output = InverseMass<T>
* operator.Source§impl<T> Mul<Acceleration<T>> for InversePower<T>where
T: NumLike,
Multiplying a InversePower by a Acceleration returns a value of type InverseMomentum
impl<T> Mul<Acceleration<T>> for InversePower<T>where
T: NumLike,
Multiplying a InversePower by a Acceleration returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
* operator.Source§impl<T> Mul<Acceleration<T>> for InversePressure<T>where
T: NumLike,
Multiplying a InversePressure by a Acceleration returns a value of type AreaPerMass
impl<T> Mul<Acceleration<T>> for InversePressure<T>where
T: NumLike,
Multiplying a InversePressure by a Acceleration returns a value of type AreaPerMass
Source§type Output = AreaPerMass<T>
type Output = AreaPerMass<T>
* operator.Source§impl<T> Mul<Acceleration<T>> for Mass<T>where
T: NumLike,
Multiplying a Mass by a Acceleration returns a value of type Force
impl<T> Mul<Acceleration<T>> for Mass<T>where
T: NumLike,
Multiplying a Mass by a Acceleration returns a value of type Force
Source§impl<T> Mul<Acceleration<T>> for Momentum<T>where
T: NumLike,
Multiplying a Momentum by a Acceleration returns a value of type Power
impl<T> Mul<Acceleration<T>> for Momentum<T>where
T: NumLike,
Multiplying a Momentum by a Acceleration returns a value of type Power
Source§impl<T> Mul<Acceleration<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Acceleration returns a value of type Velocity
impl<T> Mul<Acceleration<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Acceleration returns a value of type Velocity
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 f32
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<Acceleration<T>> for f32
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<Acceleration<T>> for f64
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<Acceleration<T>> for f64
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<Acceleration<T>> for i16
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<Acceleration<T>> for i16
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<Acceleration<T>> for i32
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<Acceleration<T>> for i32
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<Acceleration<T>> for i64
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<Acceleration<T>> for i64
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<Acceleration<T>> for i8
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<Acceleration<T>> for i8
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<Acceleration<T>> for u16
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<Acceleration<T>> for u16
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<Acceleration<T>> for u32
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<Acceleration<T>> for u32
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<Acceleration<T>> for u64
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<Acceleration<T>> for u64
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<Acceleration<T>> for u8
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<Acceleration<T>> for u8
Multiplying a unit value by a scalar value returns a unit value
Source§type Output = Acceleration<T>
type Output = Acceleration<T>
* operator.Source§impl<T> Mul<AreaDensity<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a AreaDensity returns a value of type Pressure
impl<T> Mul<AreaDensity<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a AreaDensity returns a value of type Pressure
Source§impl<T> Mul<AreaDensity<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a AreaDensity returns a value of type Pressure
impl<T> Mul<AreaDensity<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a AreaDensity returns a value of type Pressure
Source§impl<T> Mul<InverseAbsorbedDose<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseAbsorbedDose returns a value of type InverseDistance
impl<T> Mul<InverseAbsorbedDose<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseAbsorbedDose returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<InverseAbsorbedDose<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseAbsorbedDose returns a value of type InverseDistance
impl<T> Mul<InverseAbsorbedDose<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseAbsorbedDose returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<InverseDoseEquivalent<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseDoseEquivalent returns a value of type InverseDistance
impl<T> Mul<InverseDoseEquivalent<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseDoseEquivalent returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<InverseDoseEquivalent<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseDoseEquivalent returns a value of type InverseDistance
impl<T> Mul<InverseDoseEquivalent<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseDoseEquivalent returns a value of type InverseDistance
Source§type Output = InverseDistance<T>
type Output = InverseDistance<T>
* operator.Source§impl<T> Mul<InverseForce<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseForce returns a value of type InverseMass
impl<T> Mul<InverseForce<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseForce returns a value of type InverseMass
Source§type Output = InverseMass<T>
type Output = InverseMass<T>
* operator.Source§impl<T> Mul<InverseForce<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseForce returns a value of type InverseMass
impl<T> Mul<InverseForce<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InverseForce returns a value of type InverseMass
Source§type Output = InverseMass<T>
type Output = InverseMass<T>
* operator.Source§impl<T> Mul<InversePower<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InversePower returns a value of type InverseMomentum
impl<T> Mul<InversePower<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InversePower returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
* operator.Source§impl<T> Mul<InversePower<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InversePower returns a value of type InverseMomentum
impl<T> Mul<InversePower<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InversePower returns a value of type InverseMomentum
Source§type Output = InverseMomentum<T>
type Output = InverseMomentum<T>
* operator.Source§impl<T> Mul<InversePressure<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InversePressure returns a value of type AreaPerMass
impl<T> Mul<InversePressure<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InversePressure returns a value of type AreaPerMass
Source§type Output = AreaPerMass<T>
type Output = AreaPerMass<T>
* operator.Source§impl<T> Mul<InversePressure<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InversePressure returns a value of type AreaPerMass
impl<T> Mul<InversePressure<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a InversePressure returns a value of type AreaPerMass
Source§type Output = AreaPerMass<T>
type Output = AreaPerMass<T>
* operator.Source§impl<T> Mul<Mass<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Mass returns a value of type Force
impl<T> Mul<Mass<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Mass returns a value of type Force
Source§impl<T> Mul<Mass<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Mass returns a value of type Force
impl<T> Mul<Mass<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Mass returns a value of type Force
Source§impl<T> Mul<Momentum<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Momentum returns a value of type Power
impl<T> Mul<Momentum<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Momentum returns a value of type Power
Source§impl<T> Mul<Momentum<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Momentum returns a value of type Power
impl<T> Mul<Momentum<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Momentum returns a value of type Power
Source§impl<T: NumLike> Mul<T> for &Acceleration<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 &Acceleration<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 Acceleration<T>
Multiplying a unit value by a scalar value returns a unit value
impl<T: NumLike> Mul<T> for Acceleration<T>
Multiplying a unit value by a scalar value returns a unit value
Source§impl<T> Mul<Time<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Time returns a value of type Velocity
impl<T> Mul<Time<T>> for &Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Time returns a value of type Velocity
Source§impl<T> Mul<Time<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Time returns a value of type Velocity
impl<T> Mul<Time<T>> for Acceleration<T>where
T: NumLike,
Multiplying a Acceleration by a Time returns a value of type Velocity
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 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: NumLike> MulAssign<T> for Acceleration<T>
Multiplies this unit value by a scalar
impl<T: NumLike> MulAssign<T> for Acceleration<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 &Acceleration<T>
Flips the sign of this unit value (automatically clones the referenced data for convenient ergonomics)
impl<T: NumLike> Neg for &Acceleration<T>
Flips the sign of this unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T: NumLike> Neg for Acceleration<T>
Flips the sign of this unit value
impl<T: NumLike> Neg for Acceleration<T>
Flips the sign of this unit value
Source§impl<T> Ord for Acceleration<T>
This struct implements the Ord trait if it’s member data type also has the Ord trait
impl<T> Ord for Acceleration<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 Acceleration<T>
This struct implements the PartialEq trait if it’s member data type also has the PartialEq trait
impl<T> PartialEq for Acceleration<T>
This struct implements the PartialEq trait if it’s member data type also has the PartialEq trait
Source§impl<T> PartialOrd for Acceleration<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 Acceleration<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 &Acceleration<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 &Acceleration<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 Acceleration<T>
Subtracting two unit values of the same type returns a new unit value of the same type
impl<T: NumLike> Sub for Acceleration<T>
Subtracting two unit values of the same type returns a new unit value of the same type
Source§impl<T: NumLike> SubAssign for Acceleration<T>
Subtracts the given unit value from this unit value
impl<T: NumLike> SubAssign for Acceleration<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 Acceleration<T>
This struct implements the Copy marker trait if it’s member data type also has the Copy trait
impl<T> Eq for Acceleration<T>
This struct implements the core::cmp::Eq trait if it’s member data type also has the core::cmp::Eq trait