Skip to main content

Frequency

Struct Frequency 

Source
pub struct Frequency<T: NumLike> {
    pub Hz: T,
}
Expand description

The frequency unit type, defined as hertz in SI units

Fields§

§Hz: T

The value of this Frequency in hertz

Implementations§

Source§

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

Source

pub fn unit_name() -> &'static str

Returns the standard unit name of frequency: “hertz”

Source

pub fn unit_symbol() -> &'static str

Returns the abbreviated name or symbol of frequency: “Hz” for hertz

Source

pub fn from_Hz(Hz: T) -> Self

Returns a new frequency value from the given number of hertz

§Arguments
  • Hz - Any number-like type, representing a quantity of hertz
Source

pub fn to_Hz(&self) -> T

Returns a copy of this frequency value in hertz

Source

pub fn from_hertz(hertz: T) -> Self

Returns a new frequency value from the given number of hertz

§Arguments
  • hertz - Any number-like type, representing a quantity of hertz
Source

pub fn to_hertz(&self) -> T

Returns a copy of this frequency value in hertz

Source§

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

Source

pub fn to_kHz(&self) -> T

Returns a copy of this frequency value in kilohertz

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

Source

pub fn from_kHz(kHz: T) -> Self

Returns a new frequency value from the given number of kilohertz

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

§Arguments
  • kHz - Any number-like type, representing a quantity of kilohertz
Source

pub fn to_MHz(&self) -> T

Returns a copy of this frequency value in megahertz

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

Source

pub fn from_MHz(MHz: T) -> Self

Returns a new frequency value from the given number of megahertz

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

§Arguments
  • MHz - Any number-like type, representing a quantity of megahertz
Source

pub fn to_GHz(&self) -> T

Returns a copy of this frequency value in gigahertz

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

Source

pub fn from_GHz(GHz: T) -> Self

Returns a new frequency value from the given number of gigahertz

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

§Arguments
  • GHz - Any number-like type, representing a quantity of gigahertz
Source

pub fn to_THz(&self) -> T

Returns a copy of this frequency value in terahertz

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

Source

pub fn from_THz(THz: T) -> Self

Returns a new frequency value from the given number of terahertz

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

§Arguments
  • THz - Any number-like type, representing a quantity of terahertz

Trait Implementations§

Source§

impl<T: NumLike> Add for &Frequency<T>

Adding two unit values of the same type returns a new unit value of the same type (automatically clones the referenced data for convenient ergonomics)

Source§

type Output = Frequency<T>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: NumLike> Add for Frequency<T>

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

Source§

type Output = Frequency<T>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: NumLike> AddAssign for Frequency<T>

Adds the given unit value to this unit value

Source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
Source§

impl<T: Clone + NumLike> Clone for Frequency<T>

Source§

fn clone(&self) -> Frequency<T>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: Debug + NumLike> Debug for Frequency<T>

Source§

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

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

impl<T> Display for Frequency<T>
where T: NumLike,

Source§

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

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

impl<T> Div<&Acceleration<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a Acceleration returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Acceleration<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a Acceleration returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&AngularAcceleration<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a AngularAcceleration returns a value of type InverseAngularVelocity

Source§

type Output = InverseAngularVelocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&AngularAcceleration<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a AngularAcceleration returns a value of type InverseAngularVelocity

Source§

type Output = InverseAngularVelocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&AngularVelocity<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a AngularVelocity returns a value of type InverseAngle

Source§

type Output = InverseAngle<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&AngularVelocity<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a AngularVelocity returns a value of type InverseAngle

Source§

type Output = InverseAngle<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&CatalyticActivity<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a CatalyticActivity returns a value of type InverseAmount

Source§

type Output = InverseAmount<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&CatalyticActivity<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a CatalyticActivity returns a value of type InverseAmount

Source§

type Output = InverseAmount<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Conductance<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a Conductance returns a value of type Elastance

Source§

type Output = Elastance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Conductance<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a Conductance returns a value of type Elastance

Source§

type Output = Elastance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Current<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a Current returns a value of type InverseCharge

Source§

type Output = InverseCharge<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Current<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a Current returns a value of type InverseCharge

Source§

type Output = InverseCharge<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Elastance<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a Elastance returns a value of type Conductance

Source§

type Output = Conductance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Elastance<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a Elastance returns a value of type Conductance

Source§

type Output = Conductance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Force<T>> for &Frequency<T>
where T: NumLike,

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

Source§

type Output = InverseMomentum<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Force<T>> for Frequency<T>
where T: NumLike,

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

Source§

type Output = InverseMomentum<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for &Acceleration<T>
where T: NumLike,

Dividing a Acceleration by a Frequency returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for &AngularAcceleration<T>
where T: NumLike,

Dividing a AngularAcceleration by a Frequency returns a value of type AngularVelocity

Source§

type Output = AngularVelocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for &AngularVelocity<T>
where T: NumLike,

Dividing a AngularVelocity by a Frequency returns a value of type Angle

Source§

type Output = Angle<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for &CatalyticActivity<T>
where T: NumLike,

Dividing a CatalyticActivity by a Frequency returns a value of type Amount

Source§

type Output = Amount<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for &Conductance<T>
where T: NumLike,

Dividing a Conductance by a Frequency returns a value of type Capacitance

Source§

type Output = Capacitance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for &Current<T>
where T: NumLike,

Dividing a Current by a Frequency returns a value of type Charge

Source§

type Output = Charge<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for &Elastance<T>
where T: NumLike,

Dividing a Elastance by a Frequency returns a value of type Resistance

Source§

type Output = Resistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for &Force<T>
where T: NumLike,

Dividing a Force by a Frequency returns a value of type Momentum

Source§

type Output = Momentum<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for &InverseAmount<T>
where T: NumLike,

Dividing a InverseAmount by a Frequency returns a value of type InverseCatalyticActivity

Source§

type Output = InverseCatalyticActivity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for &InverseAngle<T>
where T: NumLike,

Dividing a InverseAngle by a Frequency returns a value of type InverseAngularVelocity

Source§

type Output = InverseAngularVelocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for &InverseAngularVelocity<T>
where T: NumLike,

Dividing a InverseAngularVelocity by a Frequency returns a value of type InverseAngularAcceleration

Source§

type Output = InverseAngularAcceleration<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for &InverseCharge<T>
where T: NumLike,

Dividing a InverseCharge by a Frequency returns a value of type InverseCurrent

Source§

type Output = InverseCurrent<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for &InverseDistance<T>
where T: NumLike,

Dividing a InverseDistance by a Frequency returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseEnergy by a Frequency returns a value of type InversePower

Source§

type Output = InversePower<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for &InverseInductance<T>
where T: NumLike,

Dividing a InverseInductance by a Frequency returns a value of type Conductance

Source§

type Output = Conductance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for &InverseMagneticFlux<T>
where T: NumLike,

Dividing a InverseMagneticFlux by a Frequency returns a value of type InverseVoltage

Source§

type Output = InverseVoltage<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = InverseForce<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseTorque by a Frequency returns a value of type InversePower

Source§

type Output = InversePower<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for &Power<T>
where T: NumLike,

Dividing a Power by a Frequency returns a value of type Energy

Source§

type Output = Energy<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for &Resistance<T>
where T: NumLike,

Dividing a Resistance by a Frequency returns a value of type Inductance

Source§

type Output = Inductance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for &TimePerDistance<T>
where T: NumLike,

Dividing a TimePerDistance by a Frequency returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a Velocity by a Frequency returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for &Voltage<T>
where T: NumLike,

Dividing a Voltage by a Frequency returns a value of type MagneticFlux

Source§

type Output = MagneticFlux<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for &f32
where T: NumLike + From<f32>,

Dividing a scalar value by a Frequency unit value returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for &f64
where T: NumLike + From<f64>,

Dividing a scalar value by a Frequency unit value returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for &i32
where T: NumLike + From<i32>,

Dividing a scalar value by a Frequency unit value returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for &i64
where T: NumLike + From<i64>,

Dividing a scalar value by a Frequency unit value returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for Acceleration<T>
where T: NumLike,

Dividing a Acceleration by a Frequency returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for AngularAcceleration<T>
where T: NumLike,

Dividing a AngularAcceleration by a Frequency returns a value of type AngularVelocity

Source§

type Output = AngularVelocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for AngularVelocity<T>
where T: NumLike,

Dividing a AngularVelocity by a Frequency returns a value of type Angle

Source§

type Output = Angle<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for CatalyticActivity<T>
where T: NumLike,

Dividing a CatalyticActivity by a Frequency returns a value of type Amount

Source§

type Output = Amount<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for Conductance<T>
where T: NumLike,

Dividing a Conductance by a Frequency returns a value of type Capacitance

Source§

type Output = Capacitance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for Current<T>
where T: NumLike,

Dividing a Current by a Frequency returns a value of type Charge

Source§

type Output = Charge<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for Elastance<T>
where T: NumLike,

Dividing a Elastance by a Frequency returns a value of type Resistance

Source§

type Output = Resistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for Force<T>
where T: NumLike,

Dividing a Force by a Frequency returns a value of type Momentum

Source§

type Output = Momentum<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for InverseAmount<T>
where T: NumLike,

Dividing a InverseAmount by a Frequency returns a value of type InverseCatalyticActivity

Source§

type Output = InverseCatalyticActivity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for InverseAngle<T>
where T: NumLike,

Dividing a InverseAngle by a Frequency returns a value of type InverseAngularVelocity

Source§

type Output = InverseAngularVelocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for InverseAngularVelocity<T>
where T: NumLike,

Dividing a InverseAngularVelocity by a Frequency returns a value of type InverseAngularAcceleration

Source§

type Output = InverseAngularAcceleration<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for InverseCharge<T>
where T: NumLike,

Dividing a InverseCharge by a Frequency returns a value of type InverseCurrent

Source§

type Output = InverseCurrent<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for InverseDistance<T>
where T: NumLike,

Dividing a InverseDistance by a Frequency returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseEnergy by a Frequency returns a value of type InversePower

Source§

type Output = InversePower<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for InverseInductance<T>
where T: NumLike,

Dividing a InverseInductance by a Frequency returns a value of type Conductance

Source§

type Output = Conductance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for InverseMagneticFlux<T>
where T: NumLike,

Dividing a InverseMagneticFlux by a Frequency returns a value of type InverseVoltage

Source§

type Output = InverseVoltage<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = InverseForce<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseTorque by a Frequency returns a value of type InversePower

Source§

type Output = InversePower<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for Power<T>
where T: NumLike,

Dividing a Power by a Frequency returns a value of type Energy

Source§

type Output = Energy<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for Resistance<T>
where T: NumLike,

Dividing a Resistance by a Frequency returns a value of type Inductance

Source§

type Output = Inductance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for TimePerDistance<T>
where T: NumLike,

Dividing a TimePerDistance by a Frequency returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a Velocity by a Frequency returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for Voltage<T>
where T: NumLike,

Dividing a Voltage by a Frequency returns a value of type MagneticFlux

Source§

type Output = MagneticFlux<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for f32
where T: NumLike + From<f32>,

Dividing a scalar value by a Frequency unit value returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for f64
where T: NumLike + From<f64>,

Dividing a scalar value by a Frequency unit value returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for i32
where T: NumLike + From<i32>,

Dividing a scalar value by a Frequency unit value returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Frequency<T>> for i64
where T: NumLike + From<i64>,

Dividing a scalar value by a Frequency unit value returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&InverseAmount<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseAmount returns a value of type CatalyticActivity

Source§

type Output = CatalyticActivity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&InverseAmount<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseAmount returns a value of type CatalyticActivity

Source§

type Output = CatalyticActivity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&InverseAngle<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseAngle returns a value of type AngularVelocity

Source§

type Output = AngularVelocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&InverseAngle<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseAngle returns a value of type AngularVelocity

Source§

type Output = AngularVelocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&InverseAngularVelocity<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseAngularVelocity returns a value of type AngularAcceleration

Source§

type Output = AngularAcceleration<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&InverseAngularVelocity<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseAngularVelocity returns a value of type AngularAcceleration

Source§

type Output = AngularAcceleration<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&InverseCharge<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseCharge returns a value of type Current

Source§

type Output = Current<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&InverseCharge<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseCharge returns a value of type Current

Source§

type Output = Current<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&InverseDistance<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseDistance returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&InverseDistance<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseDistance returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a Frequency by a InverseEnergy returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a Frequency by a InverseEnergy returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&InverseInductance<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseInductance returns a value of type Resistance

Source§

type Output = Resistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&InverseInductance<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseInductance returns a value of type Resistance

Source§

type Output = Resistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&InverseMagneticFlux<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseMagneticFlux returns a value of type Voltage

Source§

type Output = Voltage<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&InverseMagneticFlux<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseMagneticFlux returns a value of type Voltage

Source§

type Output = Voltage<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = Force<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = Force<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a Frequency by a InverseTorque returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a Frequency by a InverseTorque returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Power<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a Power returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Power<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a Power returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Resistance<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a Resistance returns a value of type InverseInductance

Source§

type Output = InverseInductance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Resistance<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a Resistance returns a value of type InverseInductance

Source§

type Output = InverseInductance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&TimePerDistance<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a TimePerDistance returns a value of type Acceleration

Source§

type Output = Acceleration<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&TimePerDistance<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a TimePerDistance returns a value of type Acceleration

Source§

type Output = Acceleration<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a Frequency by a Velocity returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a Frequency by a Velocity returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Voltage<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a Voltage returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Voltage<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a Voltage returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Acceleration<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a Acceleration returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Acceleration<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a Acceleration returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<AngularAcceleration<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a AngularAcceleration returns a value of type InverseAngularVelocity

Source§

type Output = InverseAngularVelocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<AngularAcceleration<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a AngularAcceleration returns a value of type InverseAngularVelocity

Source§

type Output = InverseAngularVelocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<AngularVelocity<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a AngularVelocity returns a value of type InverseAngle

Source§

type Output = InverseAngle<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<AngularVelocity<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a AngularVelocity returns a value of type InverseAngle

Source§

type Output = InverseAngle<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<CatalyticActivity<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a CatalyticActivity returns a value of type InverseAmount

Source§

type Output = InverseAmount<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<CatalyticActivity<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a CatalyticActivity returns a value of type InverseAmount

Source§

type Output = InverseAmount<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Conductance<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a Conductance returns a value of type Elastance

Source§

type Output = Elastance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Conductance<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a Conductance returns a value of type Elastance

Source§

type Output = Elastance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Current<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a Current returns a value of type InverseCharge

Source§

type Output = InverseCharge<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Current<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a Current returns a value of type InverseCharge

Source§

type Output = InverseCharge<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Elastance<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a Elastance returns a value of type Conductance

Source§

type Output = Conductance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Elastance<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a Elastance returns a value of type Conductance

Source§

type Output = Conductance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Force<T>> for &Frequency<T>
where T: NumLike,

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

Source§

type Output = InverseMomentum<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Force<T>> for Frequency<T>
where T: NumLike,

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

Source§

type Output = InverseMomentum<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for &Acceleration<T>
where T: NumLike,

Dividing a Acceleration by a Frequency returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for &AngularAcceleration<T>
where T: NumLike,

Dividing a AngularAcceleration by a Frequency returns a value of type AngularVelocity

Source§

type Output = AngularVelocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for &AngularVelocity<T>
where T: NumLike,

Dividing a AngularVelocity by a Frequency returns a value of type Angle

Source§

type Output = Angle<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for &CatalyticActivity<T>
where T: NumLike,

Dividing a CatalyticActivity by a Frequency returns a value of type Amount

Source§

type Output = Amount<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for &Conductance<T>
where T: NumLike,

Dividing a Conductance by a Frequency returns a value of type Capacitance

Source§

type Output = Capacitance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for &Current<T>
where T: NumLike,

Dividing a Current by a Frequency returns a value of type Charge

Source§

type Output = Charge<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for &Elastance<T>
where T: NumLike,

Dividing a Elastance by a Frequency returns a value of type Resistance

Source§

type Output = Resistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for &Force<T>
where T: NumLike,

Dividing a Force by a Frequency returns a value of type Momentum

Source§

type Output = Momentum<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for &InverseAmount<T>
where T: NumLike,

Dividing a InverseAmount by a Frequency returns a value of type InverseCatalyticActivity

Source§

type Output = InverseCatalyticActivity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for &InverseAngle<T>
where T: NumLike,

Dividing a InverseAngle by a Frequency returns a value of type InverseAngularVelocity

Source§

type Output = InverseAngularVelocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for &InverseAngularVelocity<T>
where T: NumLike,

Dividing a InverseAngularVelocity by a Frequency returns a value of type InverseAngularAcceleration

Source§

type Output = InverseAngularAcceleration<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for &InverseCharge<T>
where T: NumLike,

Dividing a InverseCharge by a Frequency returns a value of type InverseCurrent

Source§

type Output = InverseCurrent<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for &InverseDistance<T>
where T: NumLike,

Dividing a InverseDistance by a Frequency returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseEnergy by a Frequency returns a value of type InversePower

Source§

type Output = InversePower<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for &InverseInductance<T>
where T: NumLike,

Dividing a InverseInductance by a Frequency returns a value of type Conductance

Source§

type Output = Conductance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for &InverseMagneticFlux<T>
where T: NumLike,

Dividing a InverseMagneticFlux by a Frequency returns a value of type InverseVoltage

Source§

type Output = InverseVoltage<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = InverseForce<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseTorque by a Frequency returns a value of type InversePower

Source§

type Output = InversePower<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for &Power<T>
where T: NumLike,

Dividing a Power by a Frequency returns a value of type Energy

Source§

type Output = Energy<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for &Resistance<T>
where T: NumLike,

Dividing a Resistance by a Frequency returns a value of type Inductance

Source§

type Output = Inductance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for &TimePerDistance<T>
where T: NumLike,

Dividing a TimePerDistance by a Frequency returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a Velocity by a Frequency returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for &Voltage<T>
where T: NumLike,

Dividing a Voltage by a Frequency returns a value of type MagneticFlux

Source§

type Output = MagneticFlux<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for &f32
where T: NumLike + From<f32>,

Dividing a scalar value by a Frequency unit value returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for &f64
where T: NumLike + From<f64>,

Dividing a scalar value by a Frequency unit value returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for &i32
where T: NumLike + From<i32>,

Dividing a scalar value by a Frequency unit value returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for &i64
where T: NumLike + From<i64>,

Dividing a scalar value by a Frequency unit value returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for Acceleration<T>
where T: NumLike,

Dividing a Acceleration by a Frequency returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for AngularAcceleration<T>
where T: NumLike,

Dividing a AngularAcceleration by a Frequency returns a value of type AngularVelocity

Source§

type Output = AngularVelocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for AngularVelocity<T>
where T: NumLike,

Dividing a AngularVelocity by a Frequency returns a value of type Angle

Source§

type Output = Angle<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for CatalyticActivity<T>
where T: NumLike,

Dividing a CatalyticActivity by a Frequency returns a value of type Amount

Source§

type Output = Amount<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for Conductance<T>
where T: NumLike,

Dividing a Conductance by a Frequency returns a value of type Capacitance

Source§

type Output = Capacitance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for Current<T>
where T: NumLike,

Dividing a Current by a Frequency returns a value of type Charge

Source§

type Output = Charge<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for Elastance<T>
where T: NumLike,

Dividing a Elastance by a Frequency returns a value of type Resistance

Source§

type Output = Resistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for Force<T>
where T: NumLike,

Dividing a Force by a Frequency returns a value of type Momentum

Source§

type Output = Momentum<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for InverseAmount<T>
where T: NumLike,

Dividing a InverseAmount by a Frequency returns a value of type InverseCatalyticActivity

Source§

type Output = InverseCatalyticActivity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for InverseAngle<T>
where T: NumLike,

Dividing a InverseAngle by a Frequency returns a value of type InverseAngularVelocity

Source§

type Output = InverseAngularVelocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for InverseAngularVelocity<T>
where T: NumLike,

Dividing a InverseAngularVelocity by a Frequency returns a value of type InverseAngularAcceleration

Source§

type Output = InverseAngularAcceleration<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for InverseCharge<T>
where T: NumLike,

Dividing a InverseCharge by a Frequency returns a value of type InverseCurrent

Source§

type Output = InverseCurrent<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for InverseDistance<T>
where T: NumLike,

Dividing a InverseDistance by a Frequency returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseEnergy by a Frequency returns a value of type InversePower

Source§

type Output = InversePower<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for InverseInductance<T>
where T: NumLike,

Dividing a InverseInductance by a Frequency returns a value of type Conductance

Source§

type Output = Conductance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for InverseMagneticFlux<T>
where T: NumLike,

Dividing a InverseMagneticFlux by a Frequency returns a value of type InverseVoltage

Source§

type Output = InverseVoltage<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = InverseForce<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseTorque by a Frequency returns a value of type InversePower

Source§

type Output = InversePower<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for Power<T>
where T: NumLike,

Dividing a Power by a Frequency returns a value of type Energy

Source§

type Output = Energy<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for Resistance<T>
where T: NumLike,

Dividing a Resistance by a Frequency returns a value of type Inductance

Source§

type Output = Inductance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for TimePerDistance<T>
where T: NumLike,

Dividing a TimePerDistance by a Frequency returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a Velocity by a Frequency returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for Voltage<T>
where T: NumLike,

Dividing a Voltage by a Frequency returns a value of type MagneticFlux

Source§

type Output = MagneticFlux<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for f32
where T: NumLike + From<f32>,

Dividing a scalar value by a Frequency unit value returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for f64
where T: NumLike + From<f64>,

Dividing a scalar value by a Frequency unit value returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for i32
where T: NumLike + From<i32>,

Dividing a scalar value by a Frequency unit value returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Frequency<T>> for i64
where T: NumLike + From<i64>,

Dividing a scalar value by a Frequency unit value returns a value of type Time

Source§

type Output = Time<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<InverseAmount<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseAmount returns a value of type CatalyticActivity

Source§

type Output = CatalyticActivity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<InverseAmount<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseAmount returns a value of type CatalyticActivity

Source§

type Output = CatalyticActivity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<InverseAngle<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseAngle returns a value of type AngularVelocity

Source§

type Output = AngularVelocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<InverseAngle<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseAngle returns a value of type AngularVelocity

Source§

type Output = AngularVelocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<InverseAngularVelocity<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseAngularVelocity returns a value of type AngularAcceleration

Source§

type Output = AngularAcceleration<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<InverseAngularVelocity<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseAngularVelocity returns a value of type AngularAcceleration

Source§

type Output = AngularAcceleration<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<InverseCharge<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseCharge returns a value of type Current

Source§

type Output = Current<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<InverseCharge<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseCharge returns a value of type Current

Source§

type Output = Current<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<InverseDistance<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseDistance returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<InverseDistance<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseDistance returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a Frequency by a InverseEnergy returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a Frequency by a InverseEnergy returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<InverseInductance<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseInductance returns a value of type Resistance

Source§

type Output = Resistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<InverseInductance<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseInductance returns a value of type Resistance

Source§

type Output = Resistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<InverseMagneticFlux<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseMagneticFlux returns a value of type Voltage

Source§

type Output = Voltage<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<InverseMagneticFlux<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a InverseMagneticFlux returns a value of type Voltage

Source§

type Output = Voltage<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = Force<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = Force<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a Frequency by a InverseTorque returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a Frequency by a InverseTorque returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Power<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a Power returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Power<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a Power returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Resistance<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a Resistance returns a value of type InverseInductance

Source§

type Output = InverseInductance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Resistance<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a Resistance returns a value of type InverseInductance

Source§

type Output = InverseInductance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T: NumLike> Div<T> for Frequency<T>

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

Source§

type Output = Frequency<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<TimePerDistance<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a TimePerDistance returns a value of type Acceleration

Source§

type Output = Acceleration<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<TimePerDistance<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a TimePerDistance returns a value of type Acceleration

Source§

type Output = Acceleration<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a Frequency by a Velocity returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a Frequency by a Velocity returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Voltage<T>> for &Frequency<T>
where T: NumLike,

Dividing a Frequency by a Voltage returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Voltage<T>> for Frequency<T>
where T: NumLike,

Dividing a Frequency by a Voltage returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = T

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T: NumLike> Div for Frequency<T>

Dividing a unit value by another of the same type returns a scalar value

Source§

type Output = T

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T: NumLike> DivAssign<T> for Frequency<T>

Divides this unit value by a scalar

Source§

fn div_assign(&mut self, rhs: T)

Performs the /= operation. Read more
Source§

impl<T> Hash for Frequency<T>
where T: NumLike + Hash,

This struct implements the Hash trait if it’s member data type also has the Hash trait

Source§

fn hash<H: Hasher>(&self, hasher: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

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

Multiplying a Frequency by a Amount returns a value of type CatalyticActivity

Source§

type Output = CatalyticActivity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Amount returns a value of type CatalyticActivity

Source§

type Output = CatalyticActivity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Angle returns a value of type AngularVelocity

Source§

type Output = AngularVelocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Angle returns a value of type AngularVelocity

Source§

type Output = AngularVelocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a AngularVelocity returns a value of type AngularAcceleration

Source§

type Output = AngularAcceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a AngularVelocity returns a value of type AngularAcceleration

Source§

type Output = AngularAcceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Capacitance returns a value of type Conductance

Source§

type Output = Conductance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Capacitance returns a value of type Conductance

Source§

type Output = Conductance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Charge returns a value of type Current

Source§

type Output = Current<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Charge returns a value of type Current

Source§

type Output = Current<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Conductance returns a value of type InverseInductance

Source§

type Output = InverseInductance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Conductance returns a value of type InverseInductance

Source§

type Output = InverseInductance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Distance returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Distance returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Energy returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Energy returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Amount by a Frequency returns a value of type CatalyticActivity

Source§

type Output = CatalyticActivity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Angle by a Frequency returns a value of type AngularVelocity

Source§

type Output = AngularVelocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a AngularVelocity by a Frequency returns a value of type AngularAcceleration

Source§

type Output = AngularAcceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Capacitance by a Frequency returns a value of type Conductance

Source§

type Output = Conductance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Charge by a Frequency returns a value of type Current

Source§

type Output = Current<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Conductance by a Frequency returns a value of type InverseInductance

Source§

type Output = InverseInductance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a Frequency returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Energy by a Frequency returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Inductance by a Frequency returns a value of type Resistance

Source§

type Output = Resistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseAcceleration by a Frequency returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseAngularAcceleration by a Frequency returns a value of type InverseAngularVelocity

Source§

type Output = InverseAngularVelocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseAngularVelocity by a Frequency returns a value of type InverseAngle

Source§

type Output = InverseAngle<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseCatalyticActivity by a Frequency returns a value of type InverseAmount

Source§

type Output = InverseAmount<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseCurrent by a Frequency returns a value of type InverseCharge

Source§

type Output = InverseCharge<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = InverseMomentum<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InversePower by a Frequency returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseVoltage by a Frequency returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a MagneticFlux by a Frequency returns a value of type Voltage

Source§

type Output = Voltage<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Momentum by a Frequency returns a value of type Force

Source§

type Output = Force<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Resistance by a Frequency returns a value of type Elastance

Source§

type Output = Elastance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a TimePerDistance by a Frequency returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Torque by a Frequency returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Velocity by a Frequency returns a value of type Acceleration

Source§

type Output = Acceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Amount by a Frequency returns a value of type CatalyticActivity

Source§

type Output = CatalyticActivity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Angle by a Frequency returns a value of type AngularVelocity

Source§

type Output = AngularVelocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a AngularVelocity by a Frequency returns a value of type AngularAcceleration

Source§

type Output = AngularAcceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Capacitance by a Frequency returns a value of type Conductance

Source§

type Output = Conductance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Charge by a Frequency returns a value of type Current

Source§

type Output = Current<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Conductance by a Frequency returns a value of type InverseInductance

Source§

type Output = InverseInductance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a Frequency returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Energy by a Frequency returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Inductance by a Frequency returns a value of type Resistance

Source§

type Output = Resistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseAcceleration by a Frequency returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseAngularAcceleration by a Frequency returns a value of type InverseAngularVelocity

Source§

type Output = InverseAngularVelocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseAngularVelocity by a Frequency returns a value of type InverseAngle

Source§

type Output = InverseAngle<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseCatalyticActivity by a Frequency returns a value of type InverseAmount

Source§

type Output = InverseAmount<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseCurrent by a Frequency returns a value of type InverseCharge

Source§

type Output = InverseCharge<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = InverseMomentum<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InversePower by a Frequency returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseVoltage by a Frequency returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a MagneticFlux by a Frequency returns a value of type Voltage

Source§

type Output = Voltage<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Momentum by a Frequency returns a value of type Force

Source§

type Output = Force<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Resistance by a Frequency returns a value of type Elastance

Source§

type Output = Elastance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a TimePerDistance by a Frequency returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Torque by a Frequency returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Velocity by a Frequency returns a value of type Acceleration

Source§

type Output = Acceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Inductance returns a value of type Resistance

Source§

type Output = Resistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Inductance returns a value of type Resistance

Source§

type Output = Resistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseAcceleration returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseAcceleration returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseAngularAcceleration returns a value of type InverseAngularVelocity

Source§

type Output = InverseAngularVelocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseAngularAcceleration returns a value of type InverseAngularVelocity

Source§

type Output = InverseAngularVelocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseAngularVelocity returns a value of type InverseAngle

Source§

type Output = InverseAngle<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseAngularVelocity returns a value of type InverseAngle

Source§

type Output = InverseAngle<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseCatalyticActivity returns a value of type InverseAmount

Source§

type Output = InverseAmount<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseCatalyticActivity returns a value of type InverseAmount

Source§

type Output = InverseAmount<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseCurrent returns a value of type InverseCharge

Source§

type Output = InverseCharge<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseCurrent returns a value of type InverseCharge

Source§

type Output = InverseCharge<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = InverseMomentum<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = InverseMomentum<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InversePower returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InversePower returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseVoltage returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseVoltage returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a MagneticFlux returns a value of type Voltage

Source§

type Output = Voltage<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a MagneticFlux returns a value of type Voltage

Source§

type Output = Voltage<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Momentum returns a value of type Force

Source§

type Output = Force<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Momentum returns a value of type Force

Source§

type Output = Force<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Resistance returns a value of type Elastance

Source§

type Output = Elastance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Resistance returns a value of type Elastance

Source§

type Output = Elastance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a TimePerDistance returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a TimePerDistance returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Torque returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Torque returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Velocity returns a value of type Acceleration

Source§

type Output = Acceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Velocity returns a value of type Acceleration

Source§

type Output = Acceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Amount returns a value of type CatalyticActivity

Source§

type Output = CatalyticActivity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Amount returns a value of type CatalyticActivity

Source§

type Output = CatalyticActivity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Angle returns a value of type AngularVelocity

Source§

type Output = AngularVelocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Angle returns a value of type AngularVelocity

Source§

type Output = AngularVelocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a AngularVelocity returns a value of type AngularAcceleration

Source§

type Output = AngularAcceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a AngularVelocity returns a value of type AngularAcceleration

Source§

type Output = AngularAcceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Capacitance returns a value of type Conductance

Source§

type Output = Conductance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Capacitance returns a value of type Conductance

Source§

type Output = Conductance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Charge returns a value of type Current

Source§

type Output = Current<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Charge returns a value of type Current

Source§

type Output = Current<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Conductance returns a value of type InverseInductance

Source§

type Output = InverseInductance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Conductance returns a value of type InverseInductance

Source§

type Output = InverseInductance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Distance returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Distance returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Energy returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Energy returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Amount by a Frequency returns a value of type CatalyticActivity

Source§

type Output = CatalyticActivity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Angle by a Frequency returns a value of type AngularVelocity

Source§

type Output = AngularVelocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a AngularVelocity by a Frequency returns a value of type AngularAcceleration

Source§

type Output = AngularAcceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Capacitance by a Frequency returns a value of type Conductance

Source§

type Output = Conductance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Charge by a Frequency returns a value of type Current

Source§

type Output = Current<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Conductance by a Frequency returns a value of type InverseInductance

Source§

type Output = InverseInductance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a Frequency returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Energy by a Frequency returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Inductance by a Frequency returns a value of type Resistance

Source§

type Output = Resistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseAcceleration by a Frequency returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseAngularAcceleration by a Frequency returns a value of type InverseAngularVelocity

Source§

type Output = InverseAngularVelocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseAngularVelocity by a Frequency returns a value of type InverseAngle

Source§

type Output = InverseAngle<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseCatalyticActivity by a Frequency returns a value of type InverseAmount

Source§

type Output = InverseAmount<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseCurrent by a Frequency returns a value of type InverseCharge

Source§

type Output = InverseCharge<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = InverseMomentum<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InversePower by a Frequency returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseVoltage by a Frequency returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a MagneticFlux by a Frequency returns a value of type Voltage

Source§

type Output = Voltage<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Momentum by a Frequency returns a value of type Force

Source§

type Output = Force<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Resistance by a Frequency returns a value of type Elastance

Source§

type Output = Elastance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a TimePerDistance by a Frequency returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Torque by a Frequency returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Velocity by a Frequency returns a value of type Acceleration

Source§

type Output = Acceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Amount by a Frequency returns a value of type CatalyticActivity

Source§

type Output = CatalyticActivity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Angle by a Frequency returns a value of type AngularVelocity

Source§

type Output = AngularVelocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a AngularVelocity by a Frequency returns a value of type AngularAcceleration

Source§

type Output = AngularAcceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Capacitance by a Frequency returns a value of type Conductance

Source§

type Output = Conductance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Charge by a Frequency returns a value of type Current

Source§

type Output = Current<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Conductance by a Frequency returns a value of type InverseInductance

Source§

type Output = InverseInductance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a Frequency returns a value of type Velocity

Source§

type Output = Velocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Energy by a Frequency returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Inductance by a Frequency returns a value of type Resistance

Source§

type Output = Resistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseAcceleration by a Frequency returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseAngularAcceleration by a Frequency returns a value of type InverseAngularVelocity

Source§

type Output = InverseAngularVelocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseAngularVelocity by a Frequency returns a value of type InverseAngle

Source§

type Output = InverseAngle<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseCatalyticActivity by a Frequency returns a value of type InverseAmount

Source§

type Output = InverseAmount<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseCurrent by a Frequency returns a value of type InverseCharge

Source§

type Output = InverseCharge<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = InverseMomentum<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InversePower by a Frequency returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a InverseVoltage by a Frequency returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a MagneticFlux by a Frequency returns a value of type Voltage

Source§

type Output = Voltage<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Momentum by a Frequency returns a value of type Force

Source§

type Output = Force<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Resistance by a Frequency returns a value of type Elastance

Source§

type Output = Elastance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a TimePerDistance by a Frequency returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Torque by a Frequency returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Velocity by a Frequency returns a value of type Acceleration

Source§

type Output = Acceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Inductance returns a value of type Resistance

Source§

type Output = Resistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Inductance returns a value of type Resistance

Source§

type Output = Resistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseAcceleration returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseAcceleration returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseAngularAcceleration returns a value of type InverseAngularVelocity

Source§

type Output = InverseAngularVelocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseAngularAcceleration returns a value of type InverseAngularVelocity

Source§

type Output = InverseAngularVelocity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseAngularVelocity returns a value of type InverseAngle

Source§

type Output = InverseAngle<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseAngularVelocity returns a value of type InverseAngle

Source§

type Output = InverseAngle<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseCatalyticActivity returns a value of type InverseAmount

Source§

type Output = InverseAmount<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseCatalyticActivity returns a value of type InverseAmount

Source§

type Output = InverseAmount<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseCurrent returns a value of type InverseCharge

Source§

type Output = InverseCharge<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseCurrent returns a value of type InverseCharge

Source§

type Output = InverseCharge<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = InverseMomentum<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = InverseMomentum<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InversePower returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InversePower returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseVoltage returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a InverseVoltage returns a value of type InverseMagneticFlux

Source§

type Output = InverseMagneticFlux<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a MagneticFlux returns a value of type Voltage

Source§

type Output = Voltage<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a MagneticFlux returns a value of type Voltage

Source§

type Output = Voltage<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Momentum returns a value of type Force

Source§

type Output = Force<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Momentum returns a value of type Force

Source§

type Output = Force<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Resistance returns a value of type Elastance

Source§

type Output = Elastance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Resistance returns a value of type Elastance

Source§

type Output = Elastance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T: NumLike> Mul<T> for Frequency<T>

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

Source§

type Output = Frequency<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a TimePerDistance returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a TimePerDistance returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Torque returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Torque returns a value of type Power

Source§

type Output = Power<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Velocity returns a value of type Acceleration

Source§

type Output = Acceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Frequency by a Velocity returns a value of type Acceleration

Source§

type Output = Acceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T: NumLike> MulAssign<T> for Frequency<T>

Multiplies this unit value by a scalar

Source§

fn mul_assign(&mut self, rhs: T)

Performs the *= operation. Read more
Source§

impl<T: NumLike> Neg for &Frequency<T>

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

Source§

type Output = Frequency<T>

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
Source§

impl<T: NumLike> Neg for Frequency<T>

Flips the sign of this unit value

Source§

type Output = Frequency<T>

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
Source§

impl<T> Ord for Frequency<T>
where T: NumLike + Ord,

This struct implements the Ord trait if it’s member data type also has the Ord trait

Source§

fn cmp(&self, other: &Self) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 (const: unstable) · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<T> PartialEq for Frequency<T>
where T: NumLike + PartialEq,

This struct implements the PartialEq trait if it’s member data type also has the PartialEq trait

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
Source§

fn ne(&self, other: &Self) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T> PartialOrd for Frequency<T>
where T: NumLike + PartialOrd,

This struct implements the PartialOrd trait if it’s member data type also has the PartialOrd trait

Source§

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<T: NumLike> Sub for &Frequency<T>

Subtracting two unit values of the same type returns a new unit value of the same type (automatically clones the referenced data for convenient ergonomics)

Source§

type Output = Frequency<T>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: NumLike> Sub for Frequency<T>

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

Source§

type Output = Frequency<T>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: NumLike> SubAssign for Frequency<T>

Subtracts the given unit value from this unit value

Source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
Source§

impl<T> Copy for Frequency<T>
where T: NumLike + Copy,

This struct implements the Copy marker trait if it’s member data type also has the Copy trait

Source§

impl<T> Eq for Frequency<T>
where T: NumLike + PartialEq + Eq,

This struct implements the core::cmp::Eq trait if it’s member data type also has the core::cmp::Eq trait

Auto Trait Implementations§

§

impl<T> Freeze for Frequency<T>
where T: Freeze,

§

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

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for Frequency<T>
where T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.