pub struct Time<T: NumLike> {
pub s: T,
}Expand description
The time unit type, defined as seconds in SI units
Fields§
§s: TThe value of this Time in seconds
Implementations§
Source§impl<T> Time<T>where
T: NumLike,
impl<T> Time<T>where
T: NumLike,
Sourcepub fn unit_symbol() -> &'static str
pub fn unit_symbol() -> &'static str
Returns the abbreviated name or symbol of time: “s” for seconds
Sourcepub fn from_s(s: T) -> Self
pub fn from_s(s: T) -> Self
Returns a new time value from the given number of seconds
§Arguments
s- Any number-like type, representing a quantity of seconds
Sourcepub fn from_seconds(seconds: T) -> Self
pub fn from_seconds(seconds: T) -> Self
Returns a new time value from the given number of seconds
§Arguments
seconds- Any number-like type, representing a quantity of seconds
Sourcepub fn to_seconds(&self) -> T
pub fn to_seconds(&self) -> T
Returns a copy of this time value in seconds
Source§impl<T> Time<T>
impl<T> Time<T>
Sourcepub fn to_ms(&self) -> T
pub fn to_ms(&self) -> T
Returns a copy of this time value in milliseconds
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_ms(ms: T) -> Self
pub fn from_ms(ms: T) -> Self
Returns a new time value from the given number of milliseconds
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
ms- Any number-like type, representing a quantity of milliseconds
Sourcepub fn to_us(&self) -> T
pub fn to_us(&self) -> T
Returns a copy of this time value in microseconds
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_us(us: T) -> Self
pub fn from_us(us: T) -> Self
Returns a new time value from the given number of microseconds
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
us- Any number-like type, representing a quantity of microseconds
Sourcepub fn to_ns(&self) -> T
pub fn to_ns(&self) -> T
Returns a copy of this time value in nanoseconds
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_ns(ns: T) -> Self
pub fn from_ns(ns: T) -> Self
Returns a new time value from the given number of nanoseconds
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
ns- Any number-like type, representing a quantity of nanoseconds
Sourcepub fn to_ps(&self) -> T
pub fn to_ps(&self) -> T
Returns a copy of this time value in picoseconds
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_ps(ps: T) -> Self
pub fn from_ps(ps: T) -> Self
Returns a new time value from the given number of picoseconds
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
ps- Any number-like type, representing a quantity of picoseconds
Sourcepub fn to_min(&self) -> T
pub fn to_min(&self) -> T
Returns a copy of this time value in minutes
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_min(min: T) -> Self
pub fn from_min(min: T) -> Self
Returns a new time value from the given number of minutes
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
min- Any number-like type, representing a quantity of minutes
Sourcepub fn to_hr(&self) -> T
pub fn to_hr(&self) -> T
Returns a copy of this time value in hours
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_hr(hr: T) -> Self
pub fn from_hr(hr: T) -> Self
Returns a new time value from the given number of hours
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
hr- Any number-like type, representing a quantity of hours
Sourcepub fn to_days(&self) -> T
pub fn to_days(&self) -> T
Returns a copy of this time value in days
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_days(days: T) -> Self
pub fn from_days(days: T) -> Self
Returns a new time value from the given number of days
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
days- Any number-like type, representing a quantity of days
Sourcepub fn to_weeks(&self) -> T
pub fn to_weeks(&self) -> T
Returns a copy of this time value in weeks
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_weeks(weeks: T) -> Self
pub fn from_weeks(weeks: T) -> Self
Returns a new time value from the given number of weeks
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
weeks- Any number-like type, representing a quantity of weeks
Sourcepub fn to_yr(&self) -> T
pub fn to_yr(&self) -> T
Returns a copy of this time value in years
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_yr(yr: T) -> Self
pub fn from_yr(yr: T) -> Self
Returns a new time value from the given number of years
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
yr- Any number-like type, representing a quantity of years
Sourcepub fn to_kyr(&self) -> T
pub fn to_kyr(&self) -> T
Returns a copy of this time value in millennia
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_kyr(kyr: T) -> Self
pub fn from_kyr(kyr: T) -> Self
Returns a new time value from the given number of millennia
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
kyr- Any number-like type, representing a quantity of millennia
Sourcepub fn to_Myr(&self) -> T
pub fn to_Myr(&self) -> T
Returns a copy of this time value in million years
Note: This method is not available for f32 and other number types lacking the From<f64> trait
Sourcepub fn from_Myr(Myr: T) -> Self
pub fn from_Myr(Myr: T) -> Self
Returns a new time value from the given number of million years
Note: This method is not available for f32 and other number types lacking the From<f64> trait
§Arguments
Myr- Any number-like type, representing a quantity of million years
Trait Implementations§
Source§impl<T: NumLike> Add for &Time<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 &Time<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 Time<T>
Adding two unit values of the same type returns a new unit value of the same type
impl<T: NumLike> Add for Time<T>
Adding two unit values of the same type returns a new unit value of the same type
Source§impl<T: NumLike> AddAssign for Time<T>
Adds the given unit value to this unit value
impl<T: NumLike> AddAssign for Time<T>
Adds the given unit value to this unit value
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
+= operation. Read moreSource§impl<T> Div<&Amount<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Amount returns a value of type InverseCatalyticActivity
impl<T> Div<&Amount<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Amount returns a value of type InverseCatalyticActivity
Source§impl<T> Div<&Amount<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Amount returns a value of type InverseCatalyticActivity
impl<T> Div<&Amount<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Amount returns a value of type InverseCatalyticActivity
Source§impl<T> Div<&Angle<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Angle returns a value of type InverseAngularVelocity
impl<T> Div<&Angle<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Angle returns a value of type InverseAngularVelocity
Source§impl<T> Div<&Angle<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Angle returns a value of type InverseAngularVelocity
impl<T> Div<&Angle<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Angle returns a value of type InverseAngularVelocity
Source§impl<T> Div<&AngularVelocity<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a AngularVelocity returns a value of type InverseAngularAcceleration
impl<T> Div<&AngularVelocity<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a AngularVelocity returns a value of type InverseAngularAcceleration
Source§type Output = InverseAngularAcceleration<T>
type Output = InverseAngularAcceleration<T>
/ operator.Source§impl<T> Div<&AngularVelocity<T>> for Time<T>where
T: NumLike,
Dividing a Time by a AngularVelocity returns a value of type InverseAngularAcceleration
impl<T> Div<&AngularVelocity<T>> for Time<T>where
T: NumLike,
Dividing a Time by a AngularVelocity returns a value of type InverseAngularAcceleration
Source§type Output = InverseAngularAcceleration<T>
type Output = InverseAngularAcceleration<T>
/ operator.Source§impl<T> Div<&Capacitance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Capacitance returns a value of type Resistance
impl<T> Div<&Capacitance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Capacitance returns a value of type Resistance
Source§type Output = Resistance<T>
type Output = Resistance<T>
/ operator.Source§impl<T> Div<&Capacitance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Capacitance returns a value of type Resistance
impl<T> Div<&Capacitance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Capacitance returns a value of type Resistance
Source§type Output = Resistance<T>
type Output = Resistance<T>
/ operator.Source§impl<T> Div<&Charge<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Charge returns a value of type InverseCurrent
impl<T> Div<&Charge<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Charge returns a value of type InverseCurrent
Source§impl<T> Div<&Charge<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Charge returns a value of type InverseCurrent
impl<T> Div<&Charge<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Charge returns a value of type InverseCurrent
Source§impl<T> Div<&Conductance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Conductance returns a value of type Inductance
impl<T> Div<&Conductance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Conductance returns a value of type Inductance
Source§type Output = Inductance<T>
type Output = Inductance<T>
/ operator.Source§impl<T> Div<&Conductance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Conductance returns a value of type Inductance
impl<T> Div<&Conductance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Conductance returns a value of type Inductance
Source§type Output = Inductance<T>
type Output = Inductance<T>
/ operator.Source§impl<T> Div<&Distance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Distance returns a value of type TimePerDistance
impl<T> Div<&Distance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Distance returns a value of type TimePerDistance
Source§impl<T> Div<&Distance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Distance returns a value of type TimePerDistance
impl<T> Div<&Distance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Distance returns a value of type TimePerDistance
Source§impl<T> Div<&Energy<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Energy returns a value of type InversePower
impl<T> Div<&Energy<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Energy returns a value of type InversePower
Source§impl<T> Div<&Energy<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Energy returns a value of type InversePower
impl<T> Div<&Energy<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Energy returns a value of type InversePower
Source§impl<T> Div<&Inductance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Inductance returns a value of type Conductance
impl<T> Div<&Inductance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Inductance returns a value of type Conductance
Source§type Output = Conductance<T>
type Output = Conductance<T>
/ operator.Source§impl<T> Div<&Inductance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Inductance returns a value of type Conductance
impl<T> Div<&Inductance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Inductance returns a value of type Conductance
Source§type Output = Conductance<T>
type Output = Conductance<T>
/ operator.Source§impl<T> Div<&InverseAcceleration<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseAcceleration returns a value of type Velocity
impl<T> Div<&InverseAcceleration<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseAcceleration returns a value of type Velocity
Source§impl<T> Div<&InverseAcceleration<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseAcceleration returns a value of type Velocity
impl<T> Div<&InverseAcceleration<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseAcceleration returns a value of type Velocity
Source§impl<T> Div<&InverseAngularAcceleration<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseAngularAcceleration returns a value of type AngularVelocity
impl<T> Div<&InverseAngularAcceleration<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseAngularAcceleration returns a value of type AngularVelocity
Source§type Output = AngularVelocity<T>
type Output = AngularVelocity<T>
/ operator.Source§impl<T> Div<&InverseAngularAcceleration<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseAngularAcceleration returns a value of type AngularVelocity
impl<T> Div<&InverseAngularAcceleration<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseAngularAcceleration returns a value of type AngularVelocity
Source§type Output = AngularVelocity<T>
type Output = AngularVelocity<T>
/ operator.Source§impl<T> Div<&InverseAngularVelocity<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseAngularVelocity returns a value of type Angle
impl<T> Div<&InverseAngularVelocity<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseAngularVelocity returns a value of type Angle
Source§impl<T> Div<&InverseAngularVelocity<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseAngularVelocity returns a value of type Angle
impl<T> Div<&InverseAngularVelocity<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseAngularVelocity returns a value of type Angle
Source§impl<T> Div<&InverseCatalyticActivity<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseCatalyticActivity returns a value of type Amount
impl<T> Div<&InverseCatalyticActivity<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseCatalyticActivity returns a value of type Amount
Source§impl<T> Div<&InverseCatalyticActivity<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseCatalyticActivity returns a value of type Amount
impl<T> Div<&InverseCatalyticActivity<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseCatalyticActivity returns a value of type Amount
Source§impl<T> Div<&InverseCurrent<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseCurrent returns a value of type Charge
impl<T> Div<&InverseCurrent<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseCurrent returns a value of type Charge
Source§impl<T> Div<&InverseCurrent<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseCurrent returns a value of type Charge
impl<T> Div<&InverseCurrent<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseCurrent returns a value of type Charge
Source§impl<T> Div<&InverseForce<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseForce returns a value of type Momentum
impl<T> Div<&InverseForce<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseForce returns a value of type Momentum
Source§impl<T> Div<&InverseForce<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseForce returns a value of type Momentum
impl<T> Div<&InverseForce<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseForce returns a value of type Momentum
Source§impl<T> Div<&InversePower<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InversePower returns a value of type Energy
impl<T> Div<&InversePower<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InversePower returns a value of type Energy
Source§impl<T> Div<&InversePower<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InversePower returns a value of type Energy
impl<T> Div<&InversePower<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InversePower returns a value of type Energy
Source§impl<T> Div<&InverseVoltage<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseVoltage returns a value of type MagneticFlux
impl<T> Div<&InverseVoltage<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseVoltage returns a value of type MagneticFlux
Source§type Output = MagneticFlux<T>
type Output = MagneticFlux<T>
/ operator.Source§impl<T> Div<&InverseVoltage<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseVoltage returns a value of type MagneticFlux
impl<T> Div<&InverseVoltage<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseVoltage returns a value of type MagneticFlux
Source§type Output = MagneticFlux<T>
type Output = MagneticFlux<T>
/ operator.Source§impl<T> Div<&MagneticFlux<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a MagneticFlux returns a value of type InverseVoltage
impl<T> Div<&MagneticFlux<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a MagneticFlux returns a value of type InverseVoltage
Source§type Output = InverseVoltage<T>
type Output = InverseVoltage<T>
/ operator.Source§impl<T> Div<&MagneticFlux<T>> for Time<T>where
T: NumLike,
Dividing a Time by a MagneticFlux returns a value of type InverseVoltage
impl<T> Div<&MagneticFlux<T>> for Time<T>where
T: NumLike,
Dividing a Time by a MagneticFlux returns a value of type InverseVoltage
Source§type Output = InverseVoltage<T>
type Output = InverseVoltage<T>
/ operator.Source§impl<T> Div<&Momentum<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Momentum returns a value of type InverseForce
impl<T> Div<&Momentum<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Momentum returns a value of type InverseForce
Source§impl<T> Div<&Momentum<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Momentum returns a value of type InverseForce
impl<T> Div<&Momentum<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Momentum returns a value of type InverseForce
Source§impl<T> Div<&Resistance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Resistance returns a value of type Capacitance
impl<T> Div<&Resistance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Resistance returns a value of type Capacitance
Source§type Output = Capacitance<T>
type Output = Capacitance<T>
/ operator.Source§impl<T> Div<&Resistance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Resistance returns a value of type Capacitance
impl<T> Div<&Resistance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Resistance returns a value of type Capacitance
Source§type Output = Capacitance<T>
type Output = Capacitance<T>
/ operator.Source§impl<T> Div<&T> for &Time<T>where
T: NumLike,
Dividing a unit value by a scalar value returns a unit value
impl<T> Div<&T> for &Time<T>where
T: NumLike,
Dividing a unit value by a scalar value returns a unit value
Source§impl<T> Div<&T> for Time<T>where
T: NumLike,
Dividing a unit value by a scalar value returns a unit value
impl<T> Div<&T> for Time<T>where
T: NumLike,
Dividing a unit value by a scalar value returns a unit value
Source§impl<T> Div<&Time<T>> for &Amount<T>where
T: NumLike,
Dividing a Amount by a Time returns a value of type CatalyticActivity
impl<T> Div<&Time<T>> for &Amount<T>where
T: NumLike,
Dividing a Amount by a Time returns a value of type CatalyticActivity
Source§impl<T> Div<&Time<T>> for &Angle<T>where
T: NumLike,
Dividing a Angle by a Time returns a value of type AngularVelocity
impl<T> Div<&Time<T>> for &Angle<T>where
T: NumLike,
Dividing a Angle by a Time returns a value of type AngularVelocity
Source§impl<T> Div<&Time<T>> for &AngularVelocity<T>where
T: NumLike,
Dividing a AngularVelocity by a Time returns a value of type AngularAcceleration
impl<T> Div<&Time<T>> for &AngularVelocity<T>where
T: NumLike,
Dividing a AngularVelocity by a Time returns a value of type AngularAcceleration
Source§impl<T> Div<&Time<T>> for &Capacitance<T>where
T: NumLike,
Dividing a Capacitance by a Time returns a value of type Conductance
impl<T> Div<&Time<T>> for &Capacitance<T>where
T: NumLike,
Dividing a Capacitance by a Time returns a value of type Conductance
Source§impl<T> Div<&Time<T>> for &Charge<T>where
T: NumLike,
Dividing a Charge by a Time returns a value of type Current
impl<T> Div<&Time<T>> for &Charge<T>where
T: NumLike,
Dividing a Charge by a Time returns a value of type Current
Source§impl<T> Div<&Time<T>> for &Conductance<T>where
T: NumLike,
Dividing a Conductance by a Time returns a value of type InverseInductance
impl<T> Div<&Time<T>> for &Conductance<T>where
T: NumLike,
Dividing a Conductance by a Time returns a value of type InverseInductance
Source§impl<T> Div<&Time<T>> for &Distance<T>where
T: NumLike,
Dividing a Distance by a Time returns a value of type Velocity
impl<T> Div<&Time<T>> for &Distance<T>where
T: NumLike,
Dividing a Distance by a Time returns a value of type Velocity
Source§impl<T> Div<&Time<T>> for &Energy<T>where
T: NumLike,
Dividing a Energy by a Time returns a value of type Power
impl<T> Div<&Time<T>> for &Energy<T>where
T: NumLike,
Dividing a Energy by a Time returns a value of type Power
Source§impl<T> Div<&Time<T>> for &Inductance<T>where
T: NumLike,
Dividing a Inductance by a Time returns a value of type Resistance
impl<T> Div<&Time<T>> for &Inductance<T>where
T: NumLike,
Dividing a Inductance by a Time returns a value of type Resistance
Source§impl<T> Div<&Time<T>> for &InverseAcceleration<T>where
T: NumLike,
Dividing a InverseAcceleration by a Time returns a value of type TimePerDistance
impl<T> Div<&Time<T>> for &InverseAcceleration<T>where
T: NumLike,
Dividing a InverseAcceleration by a Time returns a value of type TimePerDistance
Source§impl<T> Div<&Time<T>> for &InverseAngularAcceleration<T>where
T: NumLike,
Dividing a InverseAngularAcceleration by a Time returns a value of type InverseAngularVelocity
impl<T> Div<&Time<T>> for &InverseAngularAcceleration<T>where
T: NumLike,
Dividing a InverseAngularAcceleration by a Time returns a value of type InverseAngularVelocity
Source§impl<T> Div<&Time<T>> for &InverseAngularVelocity<T>where
T: NumLike,
Dividing a InverseAngularVelocity by a Time returns a value of type InverseAngle
impl<T> Div<&Time<T>> for &InverseAngularVelocity<T>where
T: NumLike,
Dividing a InverseAngularVelocity by a Time returns a value of type InverseAngle
Source§impl<T> Div<&Time<T>> for &InverseCatalyticActivity<T>where
T: NumLike,
Dividing a InverseCatalyticActivity by a Time returns a value of type InverseAmount
impl<T> Div<&Time<T>> for &InverseCatalyticActivity<T>where
T: NumLike,
Dividing a InverseCatalyticActivity by a Time returns a value of type InverseAmount
Source§impl<T> Div<&Time<T>> for &InverseCurrent<T>where
T: NumLike,
Dividing a InverseCurrent by a Time returns a value of type InverseCharge
impl<T> Div<&Time<T>> for &InverseCurrent<T>where
T: NumLike,
Dividing a InverseCurrent by a Time returns a value of type InverseCharge
Source§impl<T> Div<&Time<T>> for &InverseForce<T>where
T: NumLike,
Dividing a InverseForce by a Time returns a value of type InverseMomentum
impl<T> Div<&Time<T>> for &InverseForce<T>where
T: NumLike,
Dividing a InverseForce by a Time returns a value of type InverseMomentum
Source§impl<T> Div<&Time<T>> for &InversePower<T>where
T: NumLike,
Dividing a InversePower by a Time returns a value of type InverseEnergy
impl<T> Div<&Time<T>> for &InversePower<T>where
T: NumLike,
Dividing a InversePower by a Time returns a value of type InverseEnergy
Source§impl<T> Div<&Time<T>> for &InverseVoltage<T>where
T: NumLike,
Dividing a InverseVoltage by a Time returns a value of type InverseMagneticFlux
impl<T> Div<&Time<T>> for &InverseVoltage<T>where
T: NumLike,
Dividing a InverseVoltage by a Time returns a value of type InverseMagneticFlux
Source§impl<T> Div<&Time<T>> for &MagneticFlux<T>where
T: NumLike,
Dividing a MagneticFlux by a Time returns a value of type Voltage
impl<T> Div<&Time<T>> for &MagneticFlux<T>where
T: NumLike,
Dividing a MagneticFlux by a Time returns a value of type Voltage
Source§impl<T> Div<&Time<T>> for &Momentum<T>where
T: NumLike,
Dividing a Momentum by a Time returns a value of type Force
impl<T> Div<&Time<T>> for &Momentum<T>where
T: NumLike,
Dividing a Momentum by a Time returns a value of type Force
Source§impl<T> Div<&Time<T>> for &Resistance<T>where
T: NumLike,
Dividing a Resistance by a Time returns a value of type Elastance
impl<T> Div<&Time<T>> for &Resistance<T>where
T: NumLike,
Dividing a Resistance by a Time returns a value of type Elastance
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 &Torque<T>where
T: NumLike,
Dividing a Torque by a Time returns a value of type Power
impl<T> Div<&Time<T>> for &Torque<T>where
T: NumLike,
Dividing a Torque by a Time returns a value of type Power
Source§impl<T> Div<&Time<T>> for &Velocity<T>where
T: NumLike,
Dividing a Velocity by a Time returns a value of type Acceleration
impl<T> Div<&Time<T>> for &Velocity<T>where
T: NumLike,
Dividing a Velocity by a Time returns a value of type Acceleration
Source§impl<T> Div<&Time<T>> for &f32
Dividing a scalar value by a Time unit value returns a value of type Frequency
impl<T> Div<&Time<T>> for &f32
Dividing a scalar value by a Time unit value returns a value of type Frequency
Source§impl<T> Div<&Time<T>> for &f64
Dividing a scalar value by a Time unit value returns a value of type Frequency
impl<T> Div<&Time<T>> for &f64
Dividing a scalar value by a Time unit value returns a value of type Frequency
Source§impl<T> Div<&Time<T>> for &i32
Dividing a scalar value by a Time unit value returns a value of type Frequency
impl<T> Div<&Time<T>> for &i32
Dividing a scalar value by a Time unit value returns a value of type Frequency
Source§impl<T> Div<&Time<T>> for &i64
Dividing a scalar value by a Time unit value returns a value of type Frequency
impl<T> Div<&Time<T>> for &i64
Dividing a scalar value by a Time unit value returns a value of type Frequency
Source§impl<T> Div<&Time<T>> for Amount<T>where
T: NumLike,
Dividing a Amount by a Time returns a value of type CatalyticActivity
impl<T> Div<&Time<T>> for Amount<T>where
T: NumLike,
Dividing a Amount by a Time returns a value of type CatalyticActivity
Source§impl<T> Div<&Time<T>> for Angle<T>where
T: NumLike,
Dividing a Angle by a Time returns a value of type AngularVelocity
impl<T> Div<&Time<T>> for Angle<T>where
T: NumLike,
Dividing a Angle by a Time returns a value of type AngularVelocity
Source§impl<T> Div<&Time<T>> for AngularVelocity<T>where
T: NumLike,
Dividing a AngularVelocity by a Time returns a value of type AngularAcceleration
impl<T> Div<&Time<T>> for AngularVelocity<T>where
T: NumLike,
Dividing a AngularVelocity by a Time returns a value of type AngularAcceleration
Source§impl<T> Div<&Time<T>> for Capacitance<T>where
T: NumLike,
Dividing a Capacitance by a Time returns a value of type Conductance
impl<T> Div<&Time<T>> for Capacitance<T>where
T: NumLike,
Dividing a Capacitance by a Time returns a value of type Conductance
Source§impl<T> Div<&Time<T>> for Charge<T>where
T: NumLike,
Dividing a Charge by a Time returns a value of type Current
impl<T> Div<&Time<T>> for Charge<T>where
T: NumLike,
Dividing a Charge by a Time returns a value of type Current
Source§impl<T> Div<&Time<T>> for Conductance<T>where
T: NumLike,
Dividing a Conductance by a Time returns a value of type InverseInductance
impl<T> Div<&Time<T>> for Conductance<T>where
T: NumLike,
Dividing a Conductance by a Time returns a value of type InverseInductance
Source§impl<T> Div<&Time<T>> for Distance<T>where
T: NumLike,
Dividing a Distance by a Time returns a value of type Velocity
impl<T> Div<&Time<T>> for Distance<T>where
T: NumLike,
Dividing a Distance by a Time returns a value of type Velocity
Source§impl<T> Div<&Time<T>> for Energy<T>where
T: NumLike,
Dividing a Energy by a Time returns a value of type Power
impl<T> Div<&Time<T>> for Energy<T>where
T: NumLike,
Dividing a Energy by a Time returns a value of type Power
Source§impl<T> Div<&Time<T>> for Inductance<T>where
T: NumLike,
Dividing a Inductance by a Time returns a value of type Resistance
impl<T> Div<&Time<T>> for Inductance<T>where
T: NumLike,
Dividing a Inductance by a Time returns a value of type Resistance
Source§impl<T> Div<&Time<T>> for InverseAcceleration<T>where
T: NumLike,
Dividing a InverseAcceleration by a Time returns a value of type TimePerDistance
impl<T> Div<&Time<T>> for InverseAcceleration<T>where
T: NumLike,
Dividing a InverseAcceleration by a Time returns a value of type TimePerDistance
Source§impl<T> Div<&Time<T>> for InverseAngularAcceleration<T>where
T: NumLike,
Dividing a InverseAngularAcceleration by a Time returns a value of type InverseAngularVelocity
impl<T> Div<&Time<T>> for InverseAngularAcceleration<T>where
T: NumLike,
Dividing a InverseAngularAcceleration by a Time returns a value of type InverseAngularVelocity
Source§impl<T> Div<&Time<T>> for InverseAngularVelocity<T>where
T: NumLike,
Dividing a InverseAngularVelocity by a Time returns a value of type InverseAngle
impl<T> Div<&Time<T>> for InverseAngularVelocity<T>where
T: NumLike,
Dividing a InverseAngularVelocity by a Time returns a value of type InverseAngle
Source§impl<T> Div<&Time<T>> for InverseCatalyticActivity<T>where
T: NumLike,
Dividing a InverseCatalyticActivity by a Time returns a value of type InverseAmount
impl<T> Div<&Time<T>> for InverseCatalyticActivity<T>where
T: NumLike,
Dividing a InverseCatalyticActivity by a Time returns a value of type InverseAmount
Source§impl<T> Div<&Time<T>> for InverseCurrent<T>where
T: NumLike,
Dividing a InverseCurrent by a Time returns a value of type InverseCharge
impl<T> Div<&Time<T>> for InverseCurrent<T>where
T: NumLike,
Dividing a InverseCurrent by a Time returns a value of type InverseCharge
Source§impl<T> Div<&Time<T>> for InverseForce<T>where
T: NumLike,
Dividing a InverseForce by a Time returns a value of type InverseMomentum
impl<T> Div<&Time<T>> for InverseForce<T>where
T: NumLike,
Dividing a InverseForce by a Time returns a value of type InverseMomentum
Source§impl<T> Div<&Time<T>> for InversePower<T>where
T: NumLike,
Dividing a InversePower by a Time returns a value of type InverseEnergy
impl<T> Div<&Time<T>> for InversePower<T>where
T: NumLike,
Dividing a InversePower by a Time returns a value of type InverseEnergy
Source§impl<T> Div<&Time<T>> for InverseVoltage<T>where
T: NumLike,
Dividing a InverseVoltage by a Time returns a value of type InverseMagneticFlux
impl<T> Div<&Time<T>> for InverseVoltage<T>where
T: NumLike,
Dividing a InverseVoltage by a Time returns a value of type InverseMagneticFlux
Source§impl<T> Div<&Time<T>> for MagneticFlux<T>where
T: NumLike,
Dividing a MagneticFlux by a Time returns a value of type Voltage
impl<T> Div<&Time<T>> for MagneticFlux<T>where
T: NumLike,
Dividing a MagneticFlux by a Time returns a value of type Voltage
Source§impl<T> Div<&Time<T>> for Momentum<T>where
T: NumLike,
Dividing a Momentum by a Time returns a value of type Force
impl<T> Div<&Time<T>> for Momentum<T>where
T: NumLike,
Dividing a Momentum by a Time returns a value of type Force
Source§impl<T> Div<&Time<T>> for Resistance<T>where
T: NumLike,
Dividing a Resistance by a Time returns a value of type Elastance
impl<T> Div<&Time<T>> for Resistance<T>where
T: NumLike,
Dividing a Resistance by a Time returns a value of type Elastance
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 Torque<T>where
T: NumLike,
Dividing a Torque by a Time returns a value of type Power
impl<T> Div<&Time<T>> for Torque<T>where
T: NumLike,
Dividing a Torque by a Time returns a value of type Power
Source§impl<T> Div<&Time<T>> for Velocity<T>where
T: NumLike,
Dividing a Velocity by a Time returns a value of type Acceleration
impl<T> Div<&Time<T>> for Velocity<T>where
T: NumLike,
Dividing a Velocity by a Time returns a value of type Acceleration
Source§impl<T> Div<&Time<T>> for f32
Dividing a scalar value by a Time unit value returns a value of type Frequency
impl<T> Div<&Time<T>> for f32
Dividing a scalar value by a Time unit value returns a value of type Frequency
Source§impl<T> Div<&Time<T>> for f64
Dividing a scalar value by a Time unit value returns a value of type Frequency
impl<T> Div<&Time<T>> for f64
Dividing a scalar value by a Time unit value returns a value of type Frequency
Source§impl<T> Div<&Time<T>> for i32
Dividing a scalar value by a Time unit value returns a value of type Frequency
impl<T> Div<&Time<T>> for i32
Dividing a scalar value by a Time unit value returns a value of type Frequency
Source§impl<T> Div<&Time<T>> for i64
Dividing a scalar value by a Time unit value returns a value of type Frequency
impl<T> Div<&Time<T>> for i64
Dividing a scalar value by a Time unit value returns a value of type Frequency
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 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<&Torque<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Torque returns a value of type InversePower
impl<T> Div<&Torque<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Torque returns a value of type InversePower
Source§impl<T> Div<&Torque<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Torque returns a value of type InversePower
impl<T> Div<&Torque<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Torque returns a value of type InversePower
Source§impl<T> Div<&Velocity<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Velocity returns a value of type InverseAcceleration
impl<T> Div<&Velocity<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Velocity returns a value of type InverseAcceleration
Source§impl<T> Div<&Velocity<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Velocity returns a value of type InverseAcceleration
impl<T> Div<&Velocity<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Velocity returns a value of type InverseAcceleration
Source§impl<T> Div<Amount<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Amount returns a value of type InverseCatalyticActivity
impl<T> Div<Amount<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Amount returns a value of type InverseCatalyticActivity
Source§impl<T> Div<Amount<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Amount returns a value of type InverseCatalyticActivity
impl<T> Div<Amount<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Amount returns a value of type InverseCatalyticActivity
Source§impl<T> Div<Angle<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Angle returns a value of type InverseAngularVelocity
impl<T> Div<Angle<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Angle returns a value of type InverseAngularVelocity
Source§impl<T> Div<Angle<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Angle returns a value of type InverseAngularVelocity
impl<T> Div<Angle<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Angle returns a value of type InverseAngularVelocity
Source§impl<T> Div<AngularVelocity<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a AngularVelocity returns a value of type InverseAngularAcceleration
impl<T> Div<AngularVelocity<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a AngularVelocity returns a value of type InverseAngularAcceleration
Source§type Output = InverseAngularAcceleration<T>
type Output = InverseAngularAcceleration<T>
/ operator.Source§impl<T> Div<AngularVelocity<T>> for Time<T>where
T: NumLike,
Dividing a Time by a AngularVelocity returns a value of type InverseAngularAcceleration
impl<T> Div<AngularVelocity<T>> for Time<T>where
T: NumLike,
Dividing a Time by a AngularVelocity returns a value of type InverseAngularAcceleration
Source§type Output = InverseAngularAcceleration<T>
type Output = InverseAngularAcceleration<T>
/ operator.Source§impl<T> Div<Capacitance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Capacitance returns a value of type Resistance
impl<T> Div<Capacitance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Capacitance returns a value of type Resistance
Source§type Output = Resistance<T>
type Output = Resistance<T>
/ operator.Source§impl<T> Div<Capacitance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Capacitance returns a value of type Resistance
impl<T> Div<Capacitance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Capacitance returns a value of type Resistance
Source§type Output = Resistance<T>
type Output = Resistance<T>
/ operator.Source§impl<T> Div<Charge<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Charge returns a value of type InverseCurrent
impl<T> Div<Charge<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Charge returns a value of type InverseCurrent
Source§impl<T> Div<Charge<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Charge returns a value of type InverseCurrent
impl<T> Div<Charge<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Charge returns a value of type InverseCurrent
Source§impl<T> Div<Conductance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Conductance returns a value of type Inductance
impl<T> Div<Conductance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Conductance returns a value of type Inductance
Source§type Output = Inductance<T>
type Output = Inductance<T>
/ operator.Source§impl<T> Div<Conductance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Conductance returns a value of type Inductance
impl<T> Div<Conductance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Conductance returns a value of type Inductance
Source§type Output = Inductance<T>
type Output = Inductance<T>
/ operator.Source§impl<T> Div<Distance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Distance returns a value of type TimePerDistance
impl<T> Div<Distance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Distance returns a value of type TimePerDistance
Source§impl<T> Div<Distance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Distance returns a value of type TimePerDistance
impl<T> Div<Distance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Distance returns a value of type TimePerDistance
Source§impl<T> Div<Energy<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Energy returns a value of type InversePower
impl<T> Div<Energy<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Energy returns a value of type InversePower
Source§impl<T> Div<Energy<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Energy returns a value of type InversePower
impl<T> Div<Energy<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Energy returns a value of type InversePower
Source§impl<T> Div<Inductance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Inductance returns a value of type Conductance
impl<T> Div<Inductance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Inductance returns a value of type Conductance
Source§type Output = Conductance<T>
type Output = Conductance<T>
/ operator.Source§impl<T> Div<Inductance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Inductance returns a value of type Conductance
impl<T> Div<Inductance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Inductance returns a value of type Conductance
Source§type Output = Conductance<T>
type Output = Conductance<T>
/ operator.Source§impl<T> Div<InverseAcceleration<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseAcceleration returns a value of type Velocity
impl<T> Div<InverseAcceleration<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseAcceleration returns a value of type Velocity
Source§impl<T> Div<InverseAcceleration<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseAcceleration returns a value of type Velocity
impl<T> Div<InverseAcceleration<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseAcceleration returns a value of type Velocity
Source§impl<T> Div<InverseAngularAcceleration<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseAngularAcceleration returns a value of type AngularVelocity
impl<T> Div<InverseAngularAcceleration<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseAngularAcceleration returns a value of type AngularVelocity
Source§type Output = AngularVelocity<T>
type Output = AngularVelocity<T>
/ operator.Source§impl<T> Div<InverseAngularAcceleration<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseAngularAcceleration returns a value of type AngularVelocity
impl<T> Div<InverseAngularAcceleration<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseAngularAcceleration returns a value of type AngularVelocity
Source§type Output = AngularVelocity<T>
type Output = AngularVelocity<T>
/ operator.Source§impl<T> Div<InverseAngularVelocity<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseAngularVelocity returns a value of type Angle
impl<T> Div<InverseAngularVelocity<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseAngularVelocity returns a value of type Angle
Source§impl<T> Div<InverseAngularVelocity<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseAngularVelocity returns a value of type Angle
impl<T> Div<InverseAngularVelocity<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseAngularVelocity returns a value of type Angle
Source§impl<T> Div<InverseCatalyticActivity<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseCatalyticActivity returns a value of type Amount
impl<T> Div<InverseCatalyticActivity<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseCatalyticActivity returns a value of type Amount
Source§impl<T> Div<InverseCatalyticActivity<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseCatalyticActivity returns a value of type Amount
impl<T> Div<InverseCatalyticActivity<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseCatalyticActivity returns a value of type Amount
Source§impl<T> Div<InverseCurrent<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseCurrent returns a value of type Charge
impl<T> Div<InverseCurrent<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseCurrent returns a value of type Charge
Source§impl<T> Div<InverseCurrent<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseCurrent returns a value of type Charge
impl<T> Div<InverseCurrent<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseCurrent returns a value of type Charge
Source§impl<T> Div<InverseForce<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseForce returns a value of type Momentum
impl<T> Div<InverseForce<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseForce returns a value of type Momentum
Source§impl<T> Div<InverseForce<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseForce returns a value of type Momentum
impl<T> Div<InverseForce<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseForce returns a value of type Momentum
Source§impl<T> Div<InversePower<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InversePower returns a value of type Energy
impl<T> Div<InversePower<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InversePower returns a value of type Energy
Source§impl<T> Div<InversePower<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InversePower returns a value of type Energy
impl<T> Div<InversePower<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InversePower returns a value of type Energy
Source§impl<T> Div<InverseVoltage<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseVoltage returns a value of type MagneticFlux
impl<T> Div<InverseVoltage<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a InverseVoltage returns a value of type MagneticFlux
Source§type Output = MagneticFlux<T>
type Output = MagneticFlux<T>
/ operator.Source§impl<T> Div<InverseVoltage<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseVoltage returns a value of type MagneticFlux
impl<T> Div<InverseVoltage<T>> for Time<T>where
T: NumLike,
Dividing a Time by a InverseVoltage returns a value of type MagneticFlux
Source§type Output = MagneticFlux<T>
type Output = MagneticFlux<T>
/ operator.Source§impl<T> Div<MagneticFlux<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a MagneticFlux returns a value of type InverseVoltage
impl<T> Div<MagneticFlux<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a MagneticFlux returns a value of type InverseVoltage
Source§type Output = InverseVoltage<T>
type Output = InverseVoltage<T>
/ operator.Source§impl<T> Div<MagneticFlux<T>> for Time<T>where
T: NumLike,
Dividing a Time by a MagneticFlux returns a value of type InverseVoltage
impl<T> Div<MagneticFlux<T>> for Time<T>where
T: NumLike,
Dividing a Time by a MagneticFlux returns a value of type InverseVoltage
Source§type Output = InverseVoltage<T>
type Output = InverseVoltage<T>
/ operator.Source§impl<T> Div<Momentum<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Momentum returns a value of type InverseForce
impl<T> Div<Momentum<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Momentum returns a value of type InverseForce
Source§impl<T> Div<Momentum<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Momentum returns a value of type InverseForce
impl<T> Div<Momentum<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Momentum returns a value of type InverseForce
Source§impl<T> Div<Resistance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Resistance returns a value of type Capacitance
impl<T> Div<Resistance<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Resistance returns a value of type Capacitance
Source§type Output = Capacitance<T>
type Output = Capacitance<T>
/ operator.Source§impl<T> Div<Resistance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Resistance returns a value of type Capacitance
impl<T> Div<Resistance<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Resistance returns a value of type Capacitance
Source§type Output = Capacitance<T>
type Output = Capacitance<T>
/ operator.Source§impl<T: NumLike> Div<T> for &Time<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 &Time<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 Time<T>
Dividing a unit value by a scalar value returns a unit value
impl<T: NumLike> Div<T> for Time<T>
Dividing a unit value by a scalar value returns a unit value
Source§impl<T> Div<Time<T>> for &Amount<T>where
T: NumLike,
Dividing a Amount by a Time returns a value of type CatalyticActivity
impl<T> Div<Time<T>> for &Amount<T>where
T: NumLike,
Dividing a Amount by a Time returns a value of type CatalyticActivity
Source§impl<T> Div<Time<T>> for &Angle<T>where
T: NumLike,
Dividing a Angle by a Time returns a value of type AngularVelocity
impl<T> Div<Time<T>> for &Angle<T>where
T: NumLike,
Dividing a Angle by a Time returns a value of type AngularVelocity
Source§impl<T> Div<Time<T>> for &AngularVelocity<T>where
T: NumLike,
Dividing a AngularVelocity by a Time returns a value of type AngularAcceleration
impl<T> Div<Time<T>> for &AngularVelocity<T>where
T: NumLike,
Dividing a AngularVelocity by a Time returns a value of type AngularAcceleration
Source§impl<T> Div<Time<T>> for &Capacitance<T>where
T: NumLike,
Dividing a Capacitance by a Time returns a value of type Conductance
impl<T> Div<Time<T>> for &Capacitance<T>where
T: NumLike,
Dividing a Capacitance by a Time returns a value of type Conductance
Source§impl<T> Div<Time<T>> for &Charge<T>where
T: NumLike,
Dividing a Charge by a Time returns a value of type Current
impl<T> Div<Time<T>> for &Charge<T>where
T: NumLike,
Dividing a Charge by a Time returns a value of type Current
Source§impl<T> Div<Time<T>> for &Conductance<T>where
T: NumLike,
Dividing a Conductance by a Time returns a value of type InverseInductance
impl<T> Div<Time<T>> for &Conductance<T>where
T: NumLike,
Dividing a Conductance by a Time returns a value of type InverseInductance
Source§impl<T> Div<Time<T>> for &Distance<T>where
T: NumLike,
Dividing a Distance by a Time returns a value of type Velocity
impl<T> Div<Time<T>> for &Distance<T>where
T: NumLike,
Dividing a Distance by a Time returns a value of type Velocity
Source§impl<T> Div<Time<T>> for &Energy<T>where
T: NumLike,
Dividing a Energy by a Time returns a value of type Power
impl<T> Div<Time<T>> for &Energy<T>where
T: NumLike,
Dividing a Energy by a Time returns a value of type Power
Source§impl<T> Div<Time<T>> for &Inductance<T>where
T: NumLike,
Dividing a Inductance by a Time returns a value of type Resistance
impl<T> Div<Time<T>> for &Inductance<T>where
T: NumLike,
Dividing a Inductance by a Time returns a value of type Resistance
Source§impl<T> Div<Time<T>> for &InverseAcceleration<T>where
T: NumLike,
Dividing a InverseAcceleration by a Time returns a value of type TimePerDistance
impl<T> Div<Time<T>> for &InverseAcceleration<T>where
T: NumLike,
Dividing a InverseAcceleration by a Time returns a value of type TimePerDistance
Source§impl<T> Div<Time<T>> for &InverseAngularAcceleration<T>where
T: NumLike,
Dividing a InverseAngularAcceleration by a Time returns a value of type InverseAngularVelocity
impl<T> Div<Time<T>> for &InverseAngularAcceleration<T>where
T: NumLike,
Dividing a InverseAngularAcceleration by a Time returns a value of type InverseAngularVelocity
Source§impl<T> Div<Time<T>> for &InverseAngularVelocity<T>where
T: NumLike,
Dividing a InverseAngularVelocity by a Time returns a value of type InverseAngle
impl<T> Div<Time<T>> for &InverseAngularVelocity<T>where
T: NumLike,
Dividing a InverseAngularVelocity by a Time returns a value of type InverseAngle
Source§impl<T> Div<Time<T>> for &InverseCatalyticActivity<T>where
T: NumLike,
Dividing a InverseCatalyticActivity by a Time returns a value of type InverseAmount
impl<T> Div<Time<T>> for &InverseCatalyticActivity<T>where
T: NumLike,
Dividing a InverseCatalyticActivity by a Time returns a value of type InverseAmount
Source§impl<T> Div<Time<T>> for &InverseCurrent<T>where
T: NumLike,
Dividing a InverseCurrent by a Time returns a value of type InverseCharge
impl<T> Div<Time<T>> for &InverseCurrent<T>where
T: NumLike,
Dividing a InverseCurrent by a Time returns a value of type InverseCharge
Source§impl<T> Div<Time<T>> for &InverseForce<T>where
T: NumLike,
Dividing a InverseForce by a Time returns a value of type InverseMomentum
impl<T> Div<Time<T>> for &InverseForce<T>where
T: NumLike,
Dividing a InverseForce by a Time returns a value of type InverseMomentum
Source§impl<T> Div<Time<T>> for &InversePower<T>where
T: NumLike,
Dividing a InversePower by a Time returns a value of type InverseEnergy
impl<T> Div<Time<T>> for &InversePower<T>where
T: NumLike,
Dividing a InversePower by a Time returns a value of type InverseEnergy
Source§impl<T> Div<Time<T>> for &InverseVoltage<T>where
T: NumLike,
Dividing a InverseVoltage by a Time returns a value of type InverseMagneticFlux
impl<T> Div<Time<T>> for &InverseVoltage<T>where
T: NumLike,
Dividing a InverseVoltage by a Time returns a value of type InverseMagneticFlux
Source§impl<T> Div<Time<T>> for &MagneticFlux<T>where
T: NumLike,
Dividing a MagneticFlux by a Time returns a value of type Voltage
impl<T> Div<Time<T>> for &MagneticFlux<T>where
T: NumLike,
Dividing a MagneticFlux by a Time returns a value of type Voltage
Source§impl<T> Div<Time<T>> for &Momentum<T>where
T: NumLike,
Dividing a Momentum by a Time returns a value of type Force
impl<T> Div<Time<T>> for &Momentum<T>where
T: NumLike,
Dividing a Momentum by a Time returns a value of type Force
Source§impl<T> Div<Time<T>> for &Resistance<T>where
T: NumLike,
Dividing a Resistance by a Time returns a value of type Elastance
impl<T> Div<Time<T>> for &Resistance<T>where
T: NumLike,
Dividing a Resistance by a Time returns a value of type Elastance
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 &Torque<T>where
T: NumLike,
Dividing a Torque by a Time returns a value of type Power
impl<T> Div<Time<T>> for &Torque<T>where
T: NumLike,
Dividing a Torque by a Time returns a value of type Power
Source§impl<T> Div<Time<T>> for &Velocity<T>where
T: NumLike,
Dividing a Velocity by a Time returns a value of type Acceleration
impl<T> Div<Time<T>> for &Velocity<T>where
T: NumLike,
Dividing a Velocity by a Time returns a value of type Acceleration
Source§impl<T> Div<Time<T>> for &f32
Dividing a scalar value by a Time unit value returns a value of type Frequency
impl<T> Div<Time<T>> for &f32
Dividing a scalar value by a Time unit value returns a value of type Frequency
Source§impl<T> Div<Time<T>> for &f64
Dividing a scalar value by a Time unit value returns a value of type Frequency
impl<T> Div<Time<T>> for &f64
Dividing a scalar value by a Time unit value returns a value of type Frequency
Source§impl<T> Div<Time<T>> for &i32
Dividing a scalar value by a Time unit value returns a value of type Frequency
impl<T> Div<Time<T>> for &i32
Dividing a scalar value by a Time unit value returns a value of type Frequency
Source§impl<T> Div<Time<T>> for &i64
Dividing a scalar value by a Time unit value returns a value of type Frequency
impl<T> Div<Time<T>> for &i64
Dividing a scalar value by a Time unit value returns a value of type Frequency
Source§impl<T> Div<Time<T>> for Amount<T>where
T: NumLike,
Dividing a Amount by a Time returns a value of type CatalyticActivity
impl<T> Div<Time<T>> for Amount<T>where
T: NumLike,
Dividing a Amount by a Time returns a value of type CatalyticActivity
Source§impl<T> Div<Time<T>> for Angle<T>where
T: NumLike,
Dividing a Angle by a Time returns a value of type AngularVelocity
impl<T> Div<Time<T>> for Angle<T>where
T: NumLike,
Dividing a Angle by a Time returns a value of type AngularVelocity
Source§impl<T> Div<Time<T>> for AngularVelocity<T>where
T: NumLike,
Dividing a AngularVelocity by a Time returns a value of type AngularAcceleration
impl<T> Div<Time<T>> for AngularVelocity<T>where
T: NumLike,
Dividing a AngularVelocity by a Time returns a value of type AngularAcceleration
Source§impl<T> Div<Time<T>> for Capacitance<T>where
T: NumLike,
Dividing a Capacitance by a Time returns a value of type Conductance
impl<T> Div<Time<T>> for Capacitance<T>where
T: NumLike,
Dividing a Capacitance by a Time returns a value of type Conductance
Source§impl<T> Div<Time<T>> for Charge<T>where
T: NumLike,
Dividing a Charge by a Time returns a value of type Current
impl<T> Div<Time<T>> for Charge<T>where
T: NumLike,
Dividing a Charge by a Time returns a value of type Current
Source§impl<T> Div<Time<T>> for Conductance<T>where
T: NumLike,
Dividing a Conductance by a Time returns a value of type InverseInductance
impl<T> Div<Time<T>> for Conductance<T>where
T: NumLike,
Dividing a Conductance by a Time returns a value of type InverseInductance
Source§impl<T> Div<Time<T>> for Distance<T>where
T: NumLike,
Dividing a Distance by a Time returns a value of type Velocity
impl<T> Div<Time<T>> for Distance<T>where
T: NumLike,
Dividing a Distance by a Time returns a value of type Velocity
Source§impl<T> Div<Time<T>> for Energy<T>where
T: NumLike,
Dividing a Energy by a Time returns a value of type Power
impl<T> Div<Time<T>> for Energy<T>where
T: NumLike,
Dividing a Energy by a Time returns a value of type Power
Source§impl<T> Div<Time<T>> for Inductance<T>where
T: NumLike,
Dividing a Inductance by a Time returns a value of type Resistance
impl<T> Div<Time<T>> for Inductance<T>where
T: NumLike,
Dividing a Inductance by a Time returns a value of type Resistance
Source§impl<T> Div<Time<T>> for InverseAcceleration<T>where
T: NumLike,
Dividing a InverseAcceleration by a Time returns a value of type TimePerDistance
impl<T> Div<Time<T>> for InverseAcceleration<T>where
T: NumLike,
Dividing a InverseAcceleration by a Time returns a value of type TimePerDistance
Source§impl<T> Div<Time<T>> for InverseAngularAcceleration<T>where
T: NumLike,
Dividing a InverseAngularAcceleration by a Time returns a value of type InverseAngularVelocity
impl<T> Div<Time<T>> for InverseAngularAcceleration<T>where
T: NumLike,
Dividing a InverseAngularAcceleration by a Time returns a value of type InverseAngularVelocity
Source§impl<T> Div<Time<T>> for InverseAngularVelocity<T>where
T: NumLike,
Dividing a InverseAngularVelocity by a Time returns a value of type InverseAngle
impl<T> Div<Time<T>> for InverseAngularVelocity<T>where
T: NumLike,
Dividing a InverseAngularVelocity by a Time returns a value of type InverseAngle
Source§impl<T> Div<Time<T>> for InverseCatalyticActivity<T>where
T: NumLike,
Dividing a InverseCatalyticActivity by a Time returns a value of type InverseAmount
impl<T> Div<Time<T>> for InverseCatalyticActivity<T>where
T: NumLike,
Dividing a InverseCatalyticActivity by a Time returns a value of type InverseAmount
Source§impl<T> Div<Time<T>> for InverseCurrent<T>where
T: NumLike,
Dividing a InverseCurrent by a Time returns a value of type InverseCharge
impl<T> Div<Time<T>> for InverseCurrent<T>where
T: NumLike,
Dividing a InverseCurrent by a Time returns a value of type InverseCharge
Source§impl<T> Div<Time<T>> for InverseForce<T>where
T: NumLike,
Dividing a InverseForce by a Time returns a value of type InverseMomentum
impl<T> Div<Time<T>> for InverseForce<T>where
T: NumLike,
Dividing a InverseForce by a Time returns a value of type InverseMomentum
Source§impl<T> Div<Time<T>> for InversePower<T>where
T: NumLike,
Dividing a InversePower by a Time returns a value of type InverseEnergy
impl<T> Div<Time<T>> for InversePower<T>where
T: NumLike,
Dividing a InversePower by a Time returns a value of type InverseEnergy
Source§impl<T> Div<Time<T>> for InverseVoltage<T>where
T: NumLike,
Dividing a InverseVoltage by a Time returns a value of type InverseMagneticFlux
impl<T> Div<Time<T>> for InverseVoltage<T>where
T: NumLike,
Dividing a InverseVoltage by a Time returns a value of type InverseMagneticFlux
Source§impl<T> Div<Time<T>> for MagneticFlux<T>where
T: NumLike,
Dividing a MagneticFlux by a Time returns a value of type Voltage
impl<T> Div<Time<T>> for MagneticFlux<T>where
T: NumLike,
Dividing a MagneticFlux by a Time returns a value of type Voltage
Source§impl<T> Div<Time<T>> for Momentum<T>where
T: NumLike,
Dividing a Momentum by a Time returns a value of type Force
impl<T> Div<Time<T>> for Momentum<T>where
T: NumLike,
Dividing a Momentum by a Time returns a value of type Force
Source§impl<T> Div<Time<T>> for Resistance<T>where
T: NumLike,
Dividing a Resistance by a Time returns a value of type Elastance
impl<T> Div<Time<T>> for Resistance<T>where
T: NumLike,
Dividing a Resistance by a Time returns a value of type Elastance
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 Torque<T>where
T: NumLike,
Dividing a Torque by a Time returns a value of type Power
impl<T> Div<Time<T>> for Torque<T>where
T: NumLike,
Dividing a Torque by a Time returns a value of type Power
Source§impl<T> Div<Time<T>> for Velocity<T>where
T: NumLike,
Dividing a Velocity by a Time returns a value of type Acceleration
impl<T> Div<Time<T>> for Velocity<T>where
T: NumLike,
Dividing a Velocity by a Time returns a value of type Acceleration
Source§impl<T> Div<Time<T>> for f32
Dividing a scalar value by a Time unit value returns a value of type Frequency
impl<T> Div<Time<T>> for f32
Dividing a scalar value by a Time unit value returns a value of type Frequency
Source§impl<T> Div<Time<T>> for f64
Dividing a scalar value by a Time unit value returns a value of type Frequency
impl<T> Div<Time<T>> for f64
Dividing a scalar value by a Time unit value returns a value of type Frequency
Source§impl<T> Div<Time<T>> for i32
Dividing a scalar value by a Time unit value returns a value of type Frequency
impl<T> Div<Time<T>> for i32
Dividing a scalar value by a Time unit value returns a value of type Frequency
Source§impl<T> Div<Time<T>> for i64
Dividing a scalar value by a Time unit value returns a value of type Frequency
impl<T> Div<Time<T>> for i64
Dividing a scalar value by a Time unit value returns a value of type Frequency
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 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<Torque<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Torque returns a value of type InversePower
impl<T> Div<Torque<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Torque returns a value of type InversePower
Source§impl<T> Div<Torque<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Torque returns a value of type InversePower
impl<T> Div<Torque<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Torque returns a value of type InversePower
Source§impl<T> Div<Velocity<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Velocity returns a value of type InverseAcceleration
impl<T> Div<Velocity<T>> for &Time<T>where
T: NumLike,
Dividing a Time by a Velocity returns a value of type InverseAcceleration
Source§impl<T> Div<Velocity<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Velocity returns a value of type InverseAcceleration
impl<T> Div<Velocity<T>> for Time<T>where
T: NumLike,
Dividing a Time by a Velocity returns a value of type InverseAcceleration
Source§impl<T: NumLike> Div for &Time<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 &Time<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 Time<T>
Dividing a unit value by another of the same type returns a scalar value
impl<T: NumLike> Div for Time<T>
Dividing a unit value by another of the same type returns a scalar value
Source§impl<T: NumLike> DivAssign<T> for Time<T>
Divides this unit value by a scalar
impl<T: NumLike> DivAssign<T> for Time<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 Time<T>
This struct implements the Hash trait if it’s member data type also has the Hash trait
impl<T> Hash for Time<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 &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 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<&AngularAcceleration<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a AngularAcceleration returns a value of type AngularVelocity
impl<T> Mul<&AngularAcceleration<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a AngularAcceleration returns a value of type AngularVelocity
Source§type Output = AngularVelocity<T>
type Output = AngularVelocity<T>
* operator.Source§impl<T> Mul<&AngularAcceleration<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a AngularAcceleration returns a value of type AngularVelocity
impl<T> Mul<&AngularAcceleration<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a AngularAcceleration returns a value of type AngularVelocity
Source§type Output = AngularVelocity<T>
type Output = AngularVelocity<T>
* operator.Source§impl<T> Mul<&AngularVelocity<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a AngularVelocity returns a value of type Angle
impl<T> Mul<&AngularVelocity<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a AngularVelocity returns a value of type Angle
Source§impl<T> Mul<&AngularVelocity<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a AngularVelocity returns a value of type Angle
impl<T> Mul<&AngularVelocity<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a AngularVelocity returns a value of type Angle
Source§impl<T> Mul<&CatalyticActivity<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a CatalyticActivity returns a value of type Amount
impl<T> Mul<&CatalyticActivity<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a CatalyticActivity returns a value of type Amount
Source§impl<T> Mul<&CatalyticActivity<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a CatalyticActivity returns a value of type Amount
impl<T> Mul<&CatalyticActivity<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a CatalyticActivity returns a value of type Amount
Source§impl<T> Mul<&Conductance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Conductance returns a value of type Capacitance
impl<T> Mul<&Conductance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Conductance returns a value of type Capacitance
Source§type Output = Capacitance<T>
type Output = Capacitance<T>
* operator.Source§impl<T> Mul<&Conductance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Conductance returns a value of type Capacitance
impl<T> Mul<&Conductance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Conductance returns a value of type Capacitance
Source§type Output = Capacitance<T>
type Output = Capacitance<T>
* operator.Source§impl<T> Mul<&Current<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Current returns a value of type Charge
impl<T> Mul<&Current<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Current returns a value of type Charge
Source§impl<T> Mul<&Current<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Current returns a value of type Charge
impl<T> Mul<&Current<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Current returns a value of type Charge
Source§impl<T> Mul<&Elastance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Elastance returns a value of type Resistance
impl<T> Mul<&Elastance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Elastance returns a value of type Resistance
Source§impl<T> Mul<&Elastance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Elastance returns a value of type Resistance
impl<T> Mul<&Elastance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Elastance returns a value of type Resistance
Source§impl<T> Mul<&Force<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Force returns a value of type Momentum
impl<T> Mul<&Force<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Force returns a value of type Momentum
Source§impl<T> Mul<&Force<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Force returns a value of type Momentum
impl<T> Mul<&Force<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Force returns a value of type Momentum
Source§impl<T> Mul<&InverseAmount<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseAmount returns a value of type InverseCatalyticActivity
impl<T> Mul<&InverseAmount<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseAmount returns a value of type InverseCatalyticActivity
Source§type Output = InverseCatalyticActivity<T>
type Output = InverseCatalyticActivity<T>
* operator.Source§impl<T> Mul<&InverseAmount<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseAmount returns a value of type InverseCatalyticActivity
impl<T> Mul<&InverseAmount<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseAmount returns a value of type InverseCatalyticActivity
Source§type Output = InverseCatalyticActivity<T>
type Output = InverseCatalyticActivity<T>
* operator.Source§impl<T> Mul<&InverseAngle<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseAngle returns a value of type InverseAngularVelocity
impl<T> Mul<&InverseAngle<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseAngle returns a value of type InverseAngularVelocity
Source§type Output = InverseAngularVelocity<T>
type Output = InverseAngularVelocity<T>
* operator.Source§impl<T> Mul<&InverseAngle<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseAngle returns a value of type InverseAngularVelocity
impl<T> Mul<&InverseAngle<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseAngle returns a value of type InverseAngularVelocity
Source§type Output = InverseAngularVelocity<T>
type Output = InverseAngularVelocity<T>
* operator.Source§impl<T> Mul<&InverseAngularVelocity<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseAngularVelocity returns a value of type InverseAngularAcceleration
impl<T> Mul<&InverseAngularVelocity<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseAngularVelocity returns a value of type InverseAngularAcceleration
Source§type Output = InverseAngularAcceleration<T>
type Output = InverseAngularAcceleration<T>
* operator.Source§impl<T> Mul<&InverseAngularVelocity<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseAngularVelocity returns a value of type InverseAngularAcceleration
impl<T> Mul<&InverseAngularVelocity<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseAngularVelocity returns a value of type InverseAngularAcceleration
Source§type Output = InverseAngularAcceleration<T>
type Output = InverseAngularAcceleration<T>
* operator.Source§impl<T> Mul<&InverseCharge<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseCharge returns a value of type InverseCurrent
impl<T> Mul<&InverseCharge<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseCharge returns a value of type InverseCurrent
Source§type Output = InverseCurrent<T>
type Output = InverseCurrent<T>
* operator.Source§impl<T> Mul<&InverseCharge<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseCharge returns a value of type InverseCurrent
impl<T> Mul<&InverseCharge<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseCharge returns a value of type InverseCurrent
Source§type Output = InverseCurrent<T>
type Output = InverseCurrent<T>
* operator.Source§impl<T> Mul<&InverseDistance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseDistance returns a value of type TimePerDistance
impl<T> Mul<&InverseDistance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseDistance returns a value of type TimePerDistance
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<&InverseDistance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseDistance returns a value of type TimePerDistance
impl<T> Mul<&InverseDistance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseDistance returns a value of type TimePerDistance
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<&InverseEnergy<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseEnergy returns a value of type InversePower
impl<T> Mul<&InverseEnergy<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseEnergy returns a value of type InversePower
Source§type Output = InversePower<T>
type Output = InversePower<T>
* operator.Source§impl<T> Mul<&InverseEnergy<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseEnergy returns a value of type InversePower
impl<T> Mul<&InverseEnergy<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseEnergy returns a value of type InversePower
Source§type Output = InversePower<T>
type Output = InversePower<T>
* operator.Source§impl<T> Mul<&InverseInductance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseInductance returns a value of type Conductance
impl<T> Mul<&InverseInductance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseInductance returns a value of type Conductance
Source§type Output = Conductance<T>
type Output = Conductance<T>
* operator.Source§impl<T> Mul<&InverseInductance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseInductance returns a value of type Conductance
impl<T> Mul<&InverseInductance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseInductance returns a value of type Conductance
Source§type Output = Conductance<T>
type Output = Conductance<T>
* operator.Source§impl<T> Mul<&InverseMagneticFlux<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseMagneticFlux returns a value of type InverseVoltage
impl<T> Mul<&InverseMagneticFlux<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseMagneticFlux returns a value of type InverseVoltage
Source§type Output = InverseVoltage<T>
type Output = InverseVoltage<T>
* operator.Source§impl<T> Mul<&InverseMagneticFlux<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseMagneticFlux returns a value of type InverseVoltage
impl<T> Mul<&InverseMagneticFlux<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseMagneticFlux returns a value of type InverseVoltage
Source§type Output = InverseVoltage<T>
type Output = InverseVoltage<T>
* operator.Source§impl<T> Mul<&InverseMomentum<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseMomentum returns a value of type InverseForce
impl<T> Mul<&InverseMomentum<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseMomentum returns a value of type InverseForce
Source§type Output = InverseForce<T>
type Output = InverseForce<T>
* operator.Source§impl<T> Mul<&InverseMomentum<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseMomentum returns a value of type InverseForce
impl<T> Mul<&InverseMomentum<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseMomentum returns a value of type InverseForce
Source§type Output = InverseForce<T>
type Output = InverseForce<T>
* operator.Source§impl<T> Mul<&InverseTorque<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseTorque returns a value of type InversePower
impl<T> Mul<&InverseTorque<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseTorque returns a value of type InversePower
Source§type Output = InversePower<T>
type Output = InversePower<T>
* operator.Source§impl<T> Mul<&InverseTorque<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseTorque returns a value of type InversePower
impl<T> Mul<&InverseTorque<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseTorque returns a value of type InversePower
Source§type Output = InversePower<T>
type Output = InversePower<T>
* operator.Source§impl<T> Mul<&Power<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Power returns a value of type Energy
impl<T> Mul<&Power<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Power returns a value of type Energy
Source§impl<T> Mul<&Power<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Power returns a value of type Energy
impl<T> Mul<&Power<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Power returns a value of type Energy
Source§impl<T> Mul<&Resistance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Resistance returns a value of type Inductance
impl<T> Mul<&Resistance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Resistance returns a value of type Inductance
Source§type Output = Inductance<T>
type Output = Inductance<T>
* operator.Source§impl<T> Mul<&Resistance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Resistance returns a value of type Inductance
impl<T> Mul<&Resistance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Resistance returns a value of type Inductance
Source§type Output = Inductance<T>
type Output = Inductance<T>
* operator.Source§impl<T> Mul<&T> for &Time<T>where
T: NumLike,
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<&T> for &Time<T>where
T: NumLike,
Multiplying a unit value by a scalar value returns a unit value
Source§impl<T> Mul<&T> for Time<T>where
T: NumLike,
Multiplying a unit value by a scalar value returns a unit value
impl<T> Mul<&T> for Time<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 &AngularAcceleration<T>where
T: NumLike,
Multiplying a AngularAcceleration by a Time returns a value of type AngularVelocity
impl<T> Mul<&Time<T>> for &AngularAcceleration<T>where
T: NumLike,
Multiplying a AngularAcceleration by a Time returns a value of type AngularVelocity
Source§impl<T> Mul<&Time<T>> for &AngularVelocity<T>where
T: NumLike,
Multiplying a AngularVelocity by a Time returns a value of type Angle
impl<T> Mul<&Time<T>> for &AngularVelocity<T>where
T: NumLike,
Multiplying a AngularVelocity by a Time returns a value of type Angle
Source§impl<T> Mul<&Time<T>> for &CatalyticActivity<T>where
T: NumLike,
Multiplying a CatalyticActivity by a Time returns a value of type Amount
impl<T> Mul<&Time<T>> for &CatalyticActivity<T>where
T: NumLike,
Multiplying a CatalyticActivity by a Time returns a value of type Amount
Source§impl<T> Mul<&Time<T>> for &Conductance<T>where
T: NumLike,
Multiplying a Conductance by a Time returns a value of type Capacitance
impl<T> Mul<&Time<T>> for &Conductance<T>where
T: NumLike,
Multiplying a Conductance by a Time returns a value of type Capacitance
Source§impl<T> Mul<&Time<T>> for &Current<T>where
T: NumLike,
Multiplying a Current by a Time returns a value of type Charge
impl<T> Mul<&Time<T>> for &Current<T>where
T: NumLike,
Multiplying a Current by a Time returns a value of type Charge
Source§impl<T> Mul<&Time<T>> for &Elastance<T>where
T: NumLike,
Multiplying a Elastance by a Time returns a value of type Resistance
impl<T> Mul<&Time<T>> for &Elastance<T>where
T: NumLike,
Multiplying a Elastance by a Time returns a value of type Resistance
Source§impl<T> Mul<&Time<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a Time returns a value of type Momentum
impl<T> Mul<&Time<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a Time returns a value of type Momentum
Source§impl<T> Mul<&Time<T>> for &InverseAmount<T>where
T: NumLike,
Multiplying a InverseAmount by a Time returns a value of type InverseCatalyticActivity
impl<T> Mul<&Time<T>> for &InverseAmount<T>where
T: NumLike,
Multiplying a InverseAmount by a Time returns a value of type InverseCatalyticActivity
Source§impl<T> Mul<&Time<T>> for &InverseAngle<T>where
T: NumLike,
Multiplying a InverseAngle by a Time returns a value of type InverseAngularVelocity
impl<T> Mul<&Time<T>> for &InverseAngle<T>where
T: NumLike,
Multiplying a InverseAngle by a Time returns a value of type InverseAngularVelocity
Source§impl<T> Mul<&Time<T>> for &InverseAngularVelocity<T>where
T: NumLike,
Multiplying a InverseAngularVelocity by a Time returns a value of type InverseAngularAcceleration
impl<T> Mul<&Time<T>> for &InverseAngularVelocity<T>where
T: NumLike,
Multiplying a InverseAngularVelocity by a Time returns a value of type InverseAngularAcceleration
Source§impl<T> Mul<&Time<T>> for &InverseCharge<T>where
T: NumLike,
Multiplying a InverseCharge by a Time returns a value of type InverseCurrent
impl<T> Mul<&Time<T>> for &InverseCharge<T>where
T: NumLike,
Multiplying a InverseCharge by a Time returns a value of type InverseCurrent
Source§impl<T> Mul<&Time<T>> for &InverseDistance<T>where
T: NumLike,
Multiplying a InverseDistance by a Time returns a value of type TimePerDistance
impl<T> Mul<&Time<T>> for &InverseDistance<T>where
T: NumLike,
Multiplying a InverseDistance by a Time returns a value of type TimePerDistance
Source§impl<T> Mul<&Time<T>> for &InverseEnergy<T>where
T: NumLike,
Multiplying a InverseEnergy by a Time returns a value of type InversePower
impl<T> Mul<&Time<T>> for &InverseEnergy<T>where
T: NumLike,
Multiplying a InverseEnergy by a Time returns a value of type InversePower
Source§impl<T> Mul<&Time<T>> for &InverseInductance<T>where
T: NumLike,
Multiplying a InverseInductance by a Time returns a value of type Conductance
impl<T> Mul<&Time<T>> for &InverseInductance<T>where
T: NumLike,
Multiplying a InverseInductance by a Time returns a value of type Conductance
Source§impl<T> Mul<&Time<T>> for &InverseMagneticFlux<T>where
T: NumLike,
Multiplying a InverseMagneticFlux by a Time returns a value of type InverseVoltage
impl<T> Mul<&Time<T>> for &InverseMagneticFlux<T>where
T: NumLike,
Multiplying a InverseMagneticFlux by a Time returns a value of type InverseVoltage
Source§impl<T> Mul<&Time<T>> for &InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a Time returns a value of type InverseForce
impl<T> Mul<&Time<T>> for &InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a Time returns a value of type InverseForce
Source§impl<T> Mul<&Time<T>> for &InverseTorque<T>where
T: NumLike,
Multiplying a InverseTorque by a Time returns a value of type InversePower
impl<T> Mul<&Time<T>> for &InverseTorque<T>where
T: NumLike,
Multiplying a InverseTorque by a Time returns a value of type InversePower
Source§impl<T> Mul<&Time<T>> for &Power<T>where
T: NumLike,
Multiplying a Power by a Time returns a value of type Energy
impl<T> Mul<&Time<T>> for &Power<T>where
T: NumLike,
Multiplying a Power by a Time returns a value of type Energy
Source§impl<T> Mul<&Time<T>> for &Resistance<T>where
T: NumLike,
Multiplying a Resistance by a Time returns a value of type Inductance
impl<T> Mul<&Time<T>> for &Resistance<T>where
T: NumLike,
Multiplying a Resistance by a Time returns a value of type Inductance
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 &Velocity<T>where
T: NumLike,
Multiplying a Velocity by a Time returns a value of type Distance
impl<T> Mul<&Time<T>> for &Velocity<T>where
T: NumLike,
Multiplying a Velocity by a Time returns a value of type Distance
Source§impl<T> Mul<&Time<T>> for &Voltage<T>where
T: NumLike,
Multiplying a Voltage by a Time returns a value of type MagneticFlux
impl<T> Mul<&Time<T>> for &Voltage<T>where
T: NumLike,
Multiplying a Voltage by a Time returns a value of type MagneticFlux
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 AngularAcceleration<T>where
T: NumLike,
Multiplying a AngularAcceleration by a Time returns a value of type AngularVelocity
impl<T> Mul<&Time<T>> for AngularAcceleration<T>where
T: NumLike,
Multiplying a AngularAcceleration by a Time returns a value of type AngularVelocity
Source§impl<T> Mul<&Time<T>> for AngularVelocity<T>where
T: NumLike,
Multiplying a AngularVelocity by a Time returns a value of type Angle
impl<T> Mul<&Time<T>> for AngularVelocity<T>where
T: NumLike,
Multiplying a AngularVelocity by a Time returns a value of type Angle
Source§impl<T> Mul<&Time<T>> for CatalyticActivity<T>where
T: NumLike,
Multiplying a CatalyticActivity by a Time returns a value of type Amount
impl<T> Mul<&Time<T>> for CatalyticActivity<T>where
T: NumLike,
Multiplying a CatalyticActivity by a Time returns a value of type Amount
Source§impl<T> Mul<&Time<T>> for Conductance<T>where
T: NumLike,
Multiplying a Conductance by a Time returns a value of type Capacitance
impl<T> Mul<&Time<T>> for Conductance<T>where
T: NumLike,
Multiplying a Conductance by a Time returns a value of type Capacitance
Source§impl<T> Mul<&Time<T>> for Current<T>where
T: NumLike,
Multiplying a Current by a Time returns a value of type Charge
impl<T> Mul<&Time<T>> for Current<T>where
T: NumLike,
Multiplying a Current by a Time returns a value of type Charge
Source§impl<T> Mul<&Time<T>> for Elastance<T>where
T: NumLike,
Multiplying a Elastance by a Time returns a value of type Resistance
impl<T> Mul<&Time<T>> for Elastance<T>where
T: NumLike,
Multiplying a Elastance by a Time returns a value of type Resistance
Source§impl<T> Mul<&Time<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a Time returns a value of type Momentum
impl<T> Mul<&Time<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a Time returns a value of type Momentum
Source§impl<T> Mul<&Time<T>> for InverseAmount<T>where
T: NumLike,
Multiplying a InverseAmount by a Time returns a value of type InverseCatalyticActivity
impl<T> Mul<&Time<T>> for InverseAmount<T>where
T: NumLike,
Multiplying a InverseAmount by a Time returns a value of type InverseCatalyticActivity
Source§impl<T> Mul<&Time<T>> for InverseAngle<T>where
T: NumLike,
Multiplying a InverseAngle by a Time returns a value of type InverseAngularVelocity
impl<T> Mul<&Time<T>> for InverseAngle<T>where
T: NumLike,
Multiplying a InverseAngle by a Time returns a value of type InverseAngularVelocity
Source§impl<T> Mul<&Time<T>> for InverseAngularVelocity<T>where
T: NumLike,
Multiplying a InverseAngularVelocity by a Time returns a value of type InverseAngularAcceleration
impl<T> Mul<&Time<T>> for InverseAngularVelocity<T>where
T: NumLike,
Multiplying a InverseAngularVelocity by a Time returns a value of type InverseAngularAcceleration
Source§impl<T> Mul<&Time<T>> for InverseCharge<T>where
T: NumLike,
Multiplying a InverseCharge by a Time returns a value of type InverseCurrent
impl<T> Mul<&Time<T>> for InverseCharge<T>where
T: NumLike,
Multiplying a InverseCharge by a Time returns a value of type InverseCurrent
Source§impl<T> Mul<&Time<T>> for InverseDistance<T>where
T: NumLike,
Multiplying a InverseDistance by a Time returns a value of type TimePerDistance
impl<T> Mul<&Time<T>> for InverseDistance<T>where
T: NumLike,
Multiplying a InverseDistance by a Time returns a value of type TimePerDistance
Source§impl<T> Mul<&Time<T>> for InverseEnergy<T>where
T: NumLike,
Multiplying a InverseEnergy by a Time returns a value of type InversePower
impl<T> Mul<&Time<T>> for InverseEnergy<T>where
T: NumLike,
Multiplying a InverseEnergy by a Time returns a value of type InversePower
Source§impl<T> Mul<&Time<T>> for InverseInductance<T>where
T: NumLike,
Multiplying a InverseInductance by a Time returns a value of type Conductance
impl<T> Mul<&Time<T>> for InverseInductance<T>where
T: NumLike,
Multiplying a InverseInductance by a Time returns a value of type Conductance
Source§impl<T> Mul<&Time<T>> for InverseMagneticFlux<T>where
T: NumLike,
Multiplying a InverseMagneticFlux by a Time returns a value of type InverseVoltage
impl<T> Mul<&Time<T>> for InverseMagneticFlux<T>where
T: NumLike,
Multiplying a InverseMagneticFlux by a Time returns a value of type InverseVoltage
Source§impl<T> Mul<&Time<T>> for InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a Time returns a value of type InverseForce
impl<T> Mul<&Time<T>> for InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a Time returns a value of type InverseForce
Source§impl<T> Mul<&Time<T>> for InverseTorque<T>where
T: NumLike,
Multiplying a InverseTorque by a Time returns a value of type InversePower
impl<T> Mul<&Time<T>> for InverseTorque<T>where
T: NumLike,
Multiplying a InverseTorque by a Time returns a value of type InversePower
Source§impl<T> Mul<&Time<T>> for Power<T>where
T: NumLike,
Multiplying a Power by a Time returns a value of type Energy
impl<T> Mul<&Time<T>> for Power<T>where
T: NumLike,
Multiplying a Power by a Time returns a value of type Energy
Source§impl<T> Mul<&Time<T>> for Resistance<T>where
T: NumLike,
Multiplying a Resistance by a Time returns a value of type Inductance
impl<T> Mul<&Time<T>> for Resistance<T>where
T: NumLike,
Multiplying a Resistance by a Time returns a value of type Inductance
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 Velocity<T>where
T: NumLike,
Multiplying a Velocity by a Time returns a value of type Distance
impl<T> Mul<&Time<T>> for Velocity<T>where
T: NumLike,
Multiplying a Velocity by a Time returns a value of type Distance
Source§impl<T> Mul<&Time<T>> for Voltage<T>where
T: NumLike,
Multiplying a Voltage by a Time returns a value of type MagneticFlux
impl<T> Mul<&Time<T>> for Voltage<T>where
T: NumLike,
Multiplying a Voltage by a Time returns a value of type MagneticFlux
Source§impl<T> Mul<&Time<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<&Time<T>> for f32
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T> Mul<&Time<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<&Time<T>> for f64
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T> Mul<&Time<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<&Time<T>> for i16
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T> Mul<&Time<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<&Time<T>> for i32
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T> Mul<&Time<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<&Time<T>> for i64
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T> Mul<&Time<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<&Time<T>> for i8
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T> Mul<&Time<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<&Time<T>> for u16
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T> Mul<&Time<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<&Time<T>> for u32
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T> Mul<&Time<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<&Time<T>> for u64
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T> Mul<&Time<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<&Time<T>> for u8
Multiplying a unit value by a scalar value returns a unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T> Mul<&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 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<&Velocity<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Velocity returns a value of type Distance
impl<T> Mul<&Velocity<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Velocity returns a value of type Distance
Source§impl<T> Mul<&Velocity<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Velocity returns a value of type Distance
impl<T> Mul<&Velocity<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Velocity returns a value of type Distance
Source§impl<T> Mul<&Voltage<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Voltage returns a value of type MagneticFlux
impl<T> Mul<&Voltage<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Voltage returns a value of type MagneticFlux
Source§impl<T> Mul<&Voltage<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Voltage returns a value of type MagneticFlux
impl<T> Mul<&Voltage<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Voltage returns a value of type MagneticFlux
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 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<AngularAcceleration<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a AngularAcceleration returns a value of type AngularVelocity
impl<T> Mul<AngularAcceleration<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a AngularAcceleration returns a value of type AngularVelocity
Source§type Output = AngularVelocity<T>
type Output = AngularVelocity<T>
* operator.Source§impl<T> Mul<AngularAcceleration<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a AngularAcceleration returns a value of type AngularVelocity
impl<T> Mul<AngularAcceleration<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a AngularAcceleration returns a value of type AngularVelocity
Source§type Output = AngularVelocity<T>
type Output = AngularVelocity<T>
* operator.Source§impl<T> Mul<AngularVelocity<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a AngularVelocity returns a value of type Angle
impl<T> Mul<AngularVelocity<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a AngularVelocity returns a value of type Angle
Source§impl<T> Mul<AngularVelocity<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a AngularVelocity returns a value of type Angle
impl<T> Mul<AngularVelocity<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a AngularVelocity returns a value of type Angle
Source§impl<T> Mul<CatalyticActivity<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a CatalyticActivity returns a value of type Amount
impl<T> Mul<CatalyticActivity<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a CatalyticActivity returns a value of type Amount
Source§impl<T> Mul<CatalyticActivity<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a CatalyticActivity returns a value of type Amount
impl<T> Mul<CatalyticActivity<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a CatalyticActivity returns a value of type Amount
Source§impl<T> Mul<Conductance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Conductance returns a value of type Capacitance
impl<T> Mul<Conductance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Conductance returns a value of type Capacitance
Source§type Output = Capacitance<T>
type Output = Capacitance<T>
* operator.Source§impl<T> Mul<Conductance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Conductance returns a value of type Capacitance
impl<T> Mul<Conductance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Conductance returns a value of type Capacitance
Source§type Output = Capacitance<T>
type Output = Capacitance<T>
* operator.Source§impl<T> Mul<Current<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Current returns a value of type Charge
impl<T> Mul<Current<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Current returns a value of type Charge
Source§impl<T> Mul<Current<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Current returns a value of type Charge
impl<T> Mul<Current<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Current returns a value of type Charge
Source§impl<T> Mul<Elastance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Elastance returns a value of type Resistance
impl<T> Mul<Elastance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Elastance returns a value of type Resistance
Source§impl<T> Mul<Elastance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Elastance returns a value of type Resistance
impl<T> Mul<Elastance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Elastance returns a value of type Resistance
Source§impl<T> Mul<Force<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Force returns a value of type Momentum
impl<T> Mul<Force<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Force returns a value of type Momentum
Source§impl<T> Mul<Force<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Force returns a value of type Momentum
impl<T> Mul<Force<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Force returns a value of type Momentum
Source§impl<T> Mul<InverseAmount<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseAmount returns a value of type InverseCatalyticActivity
impl<T> Mul<InverseAmount<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseAmount returns a value of type InverseCatalyticActivity
Source§type Output = InverseCatalyticActivity<T>
type Output = InverseCatalyticActivity<T>
* operator.Source§impl<T> Mul<InverseAmount<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseAmount returns a value of type InverseCatalyticActivity
impl<T> Mul<InverseAmount<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseAmount returns a value of type InverseCatalyticActivity
Source§type Output = InverseCatalyticActivity<T>
type Output = InverseCatalyticActivity<T>
* operator.Source§impl<T> Mul<InverseAngle<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseAngle returns a value of type InverseAngularVelocity
impl<T> Mul<InverseAngle<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseAngle returns a value of type InverseAngularVelocity
Source§type Output = InverseAngularVelocity<T>
type Output = InverseAngularVelocity<T>
* operator.Source§impl<T> Mul<InverseAngle<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseAngle returns a value of type InverseAngularVelocity
impl<T> Mul<InverseAngle<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseAngle returns a value of type InverseAngularVelocity
Source§type Output = InverseAngularVelocity<T>
type Output = InverseAngularVelocity<T>
* operator.Source§impl<T> Mul<InverseAngularVelocity<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseAngularVelocity returns a value of type InverseAngularAcceleration
impl<T> Mul<InverseAngularVelocity<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseAngularVelocity returns a value of type InverseAngularAcceleration
Source§type Output = InverseAngularAcceleration<T>
type Output = InverseAngularAcceleration<T>
* operator.Source§impl<T> Mul<InverseAngularVelocity<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseAngularVelocity returns a value of type InverseAngularAcceleration
impl<T> Mul<InverseAngularVelocity<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseAngularVelocity returns a value of type InverseAngularAcceleration
Source§type Output = InverseAngularAcceleration<T>
type Output = InverseAngularAcceleration<T>
* operator.Source§impl<T> Mul<InverseCharge<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseCharge returns a value of type InverseCurrent
impl<T> Mul<InverseCharge<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseCharge returns a value of type InverseCurrent
Source§type Output = InverseCurrent<T>
type Output = InverseCurrent<T>
* operator.Source§impl<T> Mul<InverseCharge<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseCharge returns a value of type InverseCurrent
impl<T> Mul<InverseCharge<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseCharge returns a value of type InverseCurrent
Source§type Output = InverseCurrent<T>
type Output = InverseCurrent<T>
* operator.Source§impl<T> Mul<InverseDistance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseDistance returns a value of type TimePerDistance
impl<T> Mul<InverseDistance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseDistance returns a value of type TimePerDistance
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<InverseDistance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseDistance returns a value of type TimePerDistance
impl<T> Mul<InverseDistance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseDistance returns a value of type TimePerDistance
Source§type Output = TimePerDistance<T>
type Output = TimePerDistance<T>
* operator.Source§impl<T> Mul<InverseEnergy<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseEnergy returns a value of type InversePower
impl<T> Mul<InverseEnergy<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseEnergy returns a value of type InversePower
Source§type Output = InversePower<T>
type Output = InversePower<T>
* operator.Source§impl<T> Mul<InverseEnergy<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseEnergy returns a value of type InversePower
impl<T> Mul<InverseEnergy<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseEnergy returns a value of type InversePower
Source§type Output = InversePower<T>
type Output = InversePower<T>
* operator.Source§impl<T> Mul<InverseInductance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseInductance returns a value of type Conductance
impl<T> Mul<InverseInductance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseInductance returns a value of type Conductance
Source§type Output = Conductance<T>
type Output = Conductance<T>
* operator.Source§impl<T> Mul<InverseInductance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseInductance returns a value of type Conductance
impl<T> Mul<InverseInductance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseInductance returns a value of type Conductance
Source§type Output = Conductance<T>
type Output = Conductance<T>
* operator.Source§impl<T> Mul<InverseMagneticFlux<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseMagneticFlux returns a value of type InverseVoltage
impl<T> Mul<InverseMagneticFlux<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseMagneticFlux returns a value of type InverseVoltage
Source§type Output = InverseVoltage<T>
type Output = InverseVoltage<T>
* operator.Source§impl<T> Mul<InverseMagneticFlux<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseMagneticFlux returns a value of type InverseVoltage
impl<T> Mul<InverseMagneticFlux<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseMagneticFlux returns a value of type InverseVoltage
Source§type Output = InverseVoltage<T>
type Output = InverseVoltage<T>
* operator.Source§impl<T> Mul<InverseMomentum<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseMomentum returns a value of type InverseForce
impl<T> Mul<InverseMomentum<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseMomentum returns a value of type InverseForce
Source§type Output = InverseForce<T>
type Output = InverseForce<T>
* operator.Source§impl<T> Mul<InverseMomentum<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseMomentum returns a value of type InverseForce
impl<T> Mul<InverseMomentum<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseMomentum returns a value of type InverseForce
Source§type Output = InverseForce<T>
type Output = InverseForce<T>
* operator.Source§impl<T> Mul<InverseTorque<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseTorque returns a value of type InversePower
impl<T> Mul<InverseTorque<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a InverseTorque returns a value of type InversePower
Source§type Output = InversePower<T>
type Output = InversePower<T>
* operator.Source§impl<T> Mul<InverseTorque<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseTorque returns a value of type InversePower
impl<T> Mul<InverseTorque<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a InverseTorque returns a value of type InversePower
Source§type Output = InversePower<T>
type Output = InversePower<T>
* operator.Source§impl<T> Mul<Power<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Power returns a value of type Energy
impl<T> Mul<Power<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Power returns a value of type Energy
Source§impl<T> Mul<Power<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Power returns a value of type Energy
impl<T> Mul<Power<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Power returns a value of type Energy
Source§impl<T> Mul<Resistance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Resistance returns a value of type Inductance
impl<T> Mul<Resistance<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Resistance returns a value of type Inductance
Source§type Output = Inductance<T>
type Output = Inductance<T>
* operator.Source§impl<T> Mul<Resistance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Resistance returns a value of type Inductance
impl<T> Mul<Resistance<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Resistance returns a value of type Inductance
Source§type Output = Inductance<T>
type Output = Inductance<T>
* operator.Source§impl<T: NumLike> Mul<T> for &Time<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 &Time<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 Time<T>
Multiplying a unit value by a scalar value returns a unit value
impl<T: NumLike> Mul<T> for Time<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 &AngularAcceleration<T>where
T: NumLike,
Multiplying a AngularAcceleration by a Time returns a value of type AngularVelocity
impl<T> Mul<Time<T>> for &AngularAcceleration<T>where
T: NumLike,
Multiplying a AngularAcceleration by a Time returns a value of type AngularVelocity
Source§impl<T> Mul<Time<T>> for &AngularVelocity<T>where
T: NumLike,
Multiplying a AngularVelocity by a Time returns a value of type Angle
impl<T> Mul<Time<T>> for &AngularVelocity<T>where
T: NumLike,
Multiplying a AngularVelocity by a Time returns a value of type Angle
Source§impl<T> Mul<Time<T>> for &CatalyticActivity<T>where
T: NumLike,
Multiplying a CatalyticActivity by a Time returns a value of type Amount
impl<T> Mul<Time<T>> for &CatalyticActivity<T>where
T: NumLike,
Multiplying a CatalyticActivity by a Time returns a value of type Amount
Source§impl<T> Mul<Time<T>> for &Conductance<T>where
T: NumLike,
Multiplying a Conductance by a Time returns a value of type Capacitance
impl<T> Mul<Time<T>> for &Conductance<T>where
T: NumLike,
Multiplying a Conductance by a Time returns a value of type Capacitance
Source§impl<T> Mul<Time<T>> for &Current<T>where
T: NumLike,
Multiplying a Current by a Time returns a value of type Charge
impl<T> Mul<Time<T>> for &Current<T>where
T: NumLike,
Multiplying a Current by a Time returns a value of type Charge
Source§impl<T> Mul<Time<T>> for &Elastance<T>where
T: NumLike,
Multiplying a Elastance by a Time returns a value of type Resistance
impl<T> Mul<Time<T>> for &Elastance<T>where
T: NumLike,
Multiplying a Elastance by a Time returns a value of type Resistance
Source§impl<T> Mul<Time<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a Time returns a value of type Momentum
impl<T> Mul<Time<T>> for &Force<T>where
T: NumLike,
Multiplying a Force by a Time returns a value of type Momentum
Source§impl<T> Mul<Time<T>> for &InverseAmount<T>where
T: NumLike,
Multiplying a InverseAmount by a Time returns a value of type InverseCatalyticActivity
impl<T> Mul<Time<T>> for &InverseAmount<T>where
T: NumLike,
Multiplying a InverseAmount by a Time returns a value of type InverseCatalyticActivity
Source§impl<T> Mul<Time<T>> for &InverseAngle<T>where
T: NumLike,
Multiplying a InverseAngle by a Time returns a value of type InverseAngularVelocity
impl<T> Mul<Time<T>> for &InverseAngle<T>where
T: NumLike,
Multiplying a InverseAngle by a Time returns a value of type InverseAngularVelocity
Source§impl<T> Mul<Time<T>> for &InverseAngularVelocity<T>where
T: NumLike,
Multiplying a InverseAngularVelocity by a Time returns a value of type InverseAngularAcceleration
impl<T> Mul<Time<T>> for &InverseAngularVelocity<T>where
T: NumLike,
Multiplying a InverseAngularVelocity by a Time returns a value of type InverseAngularAcceleration
Source§impl<T> Mul<Time<T>> for &InverseCharge<T>where
T: NumLike,
Multiplying a InverseCharge by a Time returns a value of type InverseCurrent
impl<T> Mul<Time<T>> for &InverseCharge<T>where
T: NumLike,
Multiplying a InverseCharge by a Time returns a value of type InverseCurrent
Source§impl<T> Mul<Time<T>> for &InverseDistance<T>where
T: NumLike,
Multiplying a InverseDistance by a Time returns a value of type TimePerDistance
impl<T> Mul<Time<T>> for &InverseDistance<T>where
T: NumLike,
Multiplying a InverseDistance by a Time returns a value of type TimePerDistance
Source§impl<T> Mul<Time<T>> for &InverseEnergy<T>where
T: NumLike,
Multiplying a InverseEnergy by a Time returns a value of type InversePower
impl<T> Mul<Time<T>> for &InverseEnergy<T>where
T: NumLike,
Multiplying a InverseEnergy by a Time returns a value of type InversePower
Source§impl<T> Mul<Time<T>> for &InverseInductance<T>where
T: NumLike,
Multiplying a InverseInductance by a Time returns a value of type Conductance
impl<T> Mul<Time<T>> for &InverseInductance<T>where
T: NumLike,
Multiplying a InverseInductance by a Time returns a value of type Conductance
Source§impl<T> Mul<Time<T>> for &InverseMagneticFlux<T>where
T: NumLike,
Multiplying a InverseMagneticFlux by a Time returns a value of type InverseVoltage
impl<T> Mul<Time<T>> for &InverseMagneticFlux<T>where
T: NumLike,
Multiplying a InverseMagneticFlux by a Time returns a value of type InverseVoltage
Source§impl<T> Mul<Time<T>> for &InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a Time returns a value of type InverseForce
impl<T> Mul<Time<T>> for &InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a Time returns a value of type InverseForce
Source§impl<T> Mul<Time<T>> for &InverseTorque<T>where
T: NumLike,
Multiplying a InverseTorque by a Time returns a value of type InversePower
impl<T> Mul<Time<T>> for &InverseTorque<T>where
T: NumLike,
Multiplying a InverseTorque by a Time returns a value of type InversePower
Source§impl<T> Mul<Time<T>> for &Power<T>where
T: NumLike,
Multiplying a Power by a Time returns a value of type Energy
impl<T> Mul<Time<T>> for &Power<T>where
T: NumLike,
Multiplying a Power by a Time returns a value of type Energy
Source§impl<T> Mul<Time<T>> for &Resistance<T>where
T: NumLike,
Multiplying a Resistance by a Time returns a value of type Inductance
impl<T> Mul<Time<T>> for &Resistance<T>where
T: NumLike,
Multiplying a Resistance by a Time returns a value of type Inductance
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 &Velocity<T>where
T: NumLike,
Multiplying a Velocity by a Time returns a value of type Distance
impl<T> Mul<Time<T>> for &Velocity<T>where
T: NumLike,
Multiplying a Velocity by a Time returns a value of type Distance
Source§impl<T> Mul<Time<T>> for &Voltage<T>where
T: NumLike,
Multiplying a Voltage by a Time returns a value of type MagneticFlux
impl<T> Mul<Time<T>> for &Voltage<T>where
T: NumLike,
Multiplying a Voltage by a Time returns a value of type MagneticFlux
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 AngularAcceleration<T>where
T: NumLike,
Multiplying a AngularAcceleration by a Time returns a value of type AngularVelocity
impl<T> Mul<Time<T>> for AngularAcceleration<T>where
T: NumLike,
Multiplying a AngularAcceleration by a Time returns a value of type AngularVelocity
Source§impl<T> Mul<Time<T>> for AngularVelocity<T>where
T: NumLike,
Multiplying a AngularVelocity by a Time returns a value of type Angle
impl<T> Mul<Time<T>> for AngularVelocity<T>where
T: NumLike,
Multiplying a AngularVelocity by a Time returns a value of type Angle
Source§impl<T> Mul<Time<T>> for CatalyticActivity<T>where
T: NumLike,
Multiplying a CatalyticActivity by a Time returns a value of type Amount
impl<T> Mul<Time<T>> for CatalyticActivity<T>where
T: NumLike,
Multiplying a CatalyticActivity by a Time returns a value of type Amount
Source§impl<T> Mul<Time<T>> for Conductance<T>where
T: NumLike,
Multiplying a Conductance by a Time returns a value of type Capacitance
impl<T> Mul<Time<T>> for Conductance<T>where
T: NumLike,
Multiplying a Conductance by a Time returns a value of type Capacitance
Source§impl<T> Mul<Time<T>> for Current<T>where
T: NumLike,
Multiplying a Current by a Time returns a value of type Charge
impl<T> Mul<Time<T>> for Current<T>where
T: NumLike,
Multiplying a Current by a Time returns a value of type Charge
Source§impl<T> Mul<Time<T>> for Elastance<T>where
T: NumLike,
Multiplying a Elastance by a Time returns a value of type Resistance
impl<T> Mul<Time<T>> for Elastance<T>where
T: NumLike,
Multiplying a Elastance by a Time returns a value of type Resistance
Source§impl<T> Mul<Time<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a Time returns a value of type Momentum
impl<T> Mul<Time<T>> for Force<T>where
T: NumLike,
Multiplying a Force by a Time returns a value of type Momentum
Source§impl<T> Mul<Time<T>> for InverseAmount<T>where
T: NumLike,
Multiplying a InverseAmount by a Time returns a value of type InverseCatalyticActivity
impl<T> Mul<Time<T>> for InverseAmount<T>where
T: NumLike,
Multiplying a InverseAmount by a Time returns a value of type InverseCatalyticActivity
Source§impl<T> Mul<Time<T>> for InverseAngle<T>where
T: NumLike,
Multiplying a InverseAngle by a Time returns a value of type InverseAngularVelocity
impl<T> Mul<Time<T>> for InverseAngle<T>where
T: NumLike,
Multiplying a InverseAngle by a Time returns a value of type InverseAngularVelocity
Source§impl<T> Mul<Time<T>> for InverseAngularVelocity<T>where
T: NumLike,
Multiplying a InverseAngularVelocity by a Time returns a value of type InverseAngularAcceleration
impl<T> Mul<Time<T>> for InverseAngularVelocity<T>where
T: NumLike,
Multiplying a InverseAngularVelocity by a Time returns a value of type InverseAngularAcceleration
Source§impl<T> Mul<Time<T>> for InverseCharge<T>where
T: NumLike,
Multiplying a InverseCharge by a Time returns a value of type InverseCurrent
impl<T> Mul<Time<T>> for InverseCharge<T>where
T: NumLike,
Multiplying a InverseCharge by a Time returns a value of type InverseCurrent
Source§impl<T> Mul<Time<T>> for InverseDistance<T>where
T: NumLike,
Multiplying a InverseDistance by a Time returns a value of type TimePerDistance
impl<T> Mul<Time<T>> for InverseDistance<T>where
T: NumLike,
Multiplying a InverseDistance by a Time returns a value of type TimePerDistance
Source§impl<T> Mul<Time<T>> for InverseEnergy<T>where
T: NumLike,
Multiplying a InverseEnergy by a Time returns a value of type InversePower
impl<T> Mul<Time<T>> for InverseEnergy<T>where
T: NumLike,
Multiplying a InverseEnergy by a Time returns a value of type InversePower
Source§impl<T> Mul<Time<T>> for InverseInductance<T>where
T: NumLike,
Multiplying a InverseInductance by a Time returns a value of type Conductance
impl<T> Mul<Time<T>> for InverseInductance<T>where
T: NumLike,
Multiplying a InverseInductance by a Time returns a value of type Conductance
Source§impl<T> Mul<Time<T>> for InverseMagneticFlux<T>where
T: NumLike,
Multiplying a InverseMagneticFlux by a Time returns a value of type InverseVoltage
impl<T> Mul<Time<T>> for InverseMagneticFlux<T>where
T: NumLike,
Multiplying a InverseMagneticFlux by a Time returns a value of type InverseVoltage
Source§impl<T> Mul<Time<T>> for InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a Time returns a value of type InverseForce
impl<T> Mul<Time<T>> for InverseMomentum<T>where
T: NumLike,
Multiplying a InverseMomentum by a Time returns a value of type InverseForce
Source§impl<T> Mul<Time<T>> for InverseTorque<T>where
T: NumLike,
Multiplying a InverseTorque by a Time returns a value of type InversePower
impl<T> Mul<Time<T>> for InverseTorque<T>where
T: NumLike,
Multiplying a InverseTorque by a Time returns a value of type InversePower
Source§impl<T> Mul<Time<T>> for Power<T>where
T: NumLike,
Multiplying a Power by a Time returns a value of type Energy
impl<T> Mul<Time<T>> for Power<T>where
T: NumLike,
Multiplying a Power by a Time returns a value of type Energy
Source§impl<T> Mul<Time<T>> for Resistance<T>where
T: NumLike,
Multiplying a Resistance by a Time returns a value of type Inductance
impl<T> Mul<Time<T>> for Resistance<T>where
T: NumLike,
Multiplying a Resistance by a Time returns a value of type Inductance
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 Velocity<T>where
T: NumLike,
Multiplying a Velocity by a Time returns a value of type Distance
impl<T> Mul<Time<T>> for Velocity<T>where
T: NumLike,
Multiplying a Velocity by a Time returns a value of type Distance
Source§impl<T> Mul<Time<T>> for Voltage<T>where
T: NumLike,
Multiplying a Voltage by a Time returns a value of type MagneticFlux
impl<T> Mul<Time<T>> for Voltage<T>where
T: NumLike,
Multiplying a Voltage by a Time returns a value of type MagneticFlux
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 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<Velocity<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Velocity returns a value of type Distance
impl<T> Mul<Velocity<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Velocity returns a value of type Distance
Source§impl<T> Mul<Velocity<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Velocity returns a value of type Distance
impl<T> Mul<Velocity<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Velocity returns a value of type Distance
Source§impl<T> Mul<Voltage<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Voltage returns a value of type MagneticFlux
impl<T> Mul<Voltage<T>> for &Time<T>where
T: NumLike,
Multiplying a Time by a Voltage returns a value of type MagneticFlux
Source§impl<T> Mul<Voltage<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Voltage returns a value of type MagneticFlux
impl<T> Mul<Voltage<T>> for Time<T>where
T: NumLike,
Multiplying a Time by a Voltage returns a value of type MagneticFlux
Source§impl<T: NumLike> MulAssign<T> for Time<T>
Multiplies this unit value by a scalar
impl<T: NumLike> MulAssign<T> for Time<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 &Time<T>
Flips the sign of this unit value (automatically clones the referenced data for convenient ergonomics)
impl<T: NumLike> Neg for &Time<T>
Flips the sign of this unit value (automatically clones the referenced data for convenient ergonomics)
Source§impl<T> Ord for Time<T>
This struct implements the Ord trait if it’s member data type also has the Ord trait
impl<T> Ord for Time<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 Time<T>
This struct implements the PartialEq trait if it’s member data type also has the PartialEq trait
impl<T> PartialEq for Time<T>
This struct implements the PartialEq trait if it’s member data type also has the PartialEq trait
Source§impl<T> PartialOrd for Time<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 Time<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 &Time<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 &Time<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 Time<T>
Subtracting two unit values of the same type returns a new unit value of the same type
impl<T: NumLike> Sub for Time<T>
Subtracting two unit values of the same type returns a new unit value of the same type
Source§impl<T: NumLike> SubAssign for Time<T>
Subtracts the given unit value from this unit value
impl<T: NumLike> SubAssign for Time<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 Time<T>
This struct implements the Copy marker trait if it’s member data type also has the Copy trait
impl<T> Eq for Time<T>
This struct implements the core::cmp::Eq trait if it’s member data type also has the core::cmp::Eq trait