Skip to main content

Distance

Struct Distance 

Source
pub struct Distance<T: NumLike> {
    pub m: T,
}
Expand description

The distance (aka length) unit type, defined as meters in SI units

Fields§

§m: T

The value of this Distance in meters

Implementations§

Source§

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

Source

pub fn unit_name() -> &'static str

Returns the standard unit name of distance: “meters”

Source

pub fn unit_symbol() -> &'static str

Returns the abbreviated name or symbol of distance: “m” for meters

Source

pub fn from_m(m: T) -> Self

Returns a new distance value from the given number of meters

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

pub fn to_m(&self) -> T

Returns a copy of this distance value in meters

Source

pub fn from_meters(meters: T) -> Self

Returns a new distance value from the given number of meters

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

pub fn to_meters(&self) -> T

Returns a copy of this distance value in meters

Source§

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

Source

pub fn to_cm(&self) -> T

Returns a copy of this distance value in millimeters

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

Source

pub fn from_cm(cm: T) -> Self

Returns a new distance value from the given number of millimeters

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

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

pub fn to_mm(&self) -> T

Returns a copy of this distance value in millimeters

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

Source

pub fn from_mm(mm: T) -> Self

Returns a new distance value from the given number of millimeters

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

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

pub fn to_um(&self) -> T

Returns a copy of this distance value in micrometers

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

Source

pub fn from_um(um: T) -> Self

Returns a new distance value from the given number of micrometers

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

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

pub fn to_nm(&self) -> T

Returns a copy of this distance value in nanometers

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

Source

pub fn from_nm(nm: T) -> Self

Returns a new distance value from the given number of nanometers

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

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

pub fn to_pm(&self) -> T

Returns a copy of this distance value in picometers

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

Source

pub fn from_pm(pm: T) -> Self

Returns a new distance value from the given number of picometers

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

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

pub fn to_km(&self) -> T

Returns a copy of this distance value in kilometers

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

Source

pub fn from_km(km: T) -> Self

Returns a new distance value from the given number of kilometers

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

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

pub fn to_au(&self) -> T

Returns a copy of this distance value in astronomical units

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

Source

pub fn from_au(au: T) -> Self

Returns a new distance value from the given number of astronomical units

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

§Arguments
  • au - Any number-like type, representing a quantity of astronomical units
Source

pub fn to_parsec(&self) -> T

Returns a copy of this distance value in parsecs

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

Source

pub fn from_parsec(parsec: T) -> Self

Returns a new distance value from the given number of parsecs

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

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

pub fn to_lyr(&self) -> T

Returns a copy of this distance value in light-years

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

Source

pub fn from_lyr(lyr: T) -> Self

Returns a new distance value from the given number of light-years

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

§Arguments
  • lyr - Any number-like type, representing a quantity of light-years

Trait Implementations§

Source§

impl<T: NumLike> Add for &Distance<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 = Distance<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 Distance<T>

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

Source§

type Output = Distance<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 Distance<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 Distance<T>

Source§

fn clone(&self) -> Distance<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 Distance<T>

Source§

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

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

impl<T> Display for Distance<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<&Area<T>> for &Distance<T>
where T: NumLike,

Dividing a Distance by a Area returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Area<T>> for Distance<T>
where T: NumLike,

Dividing a Distance by a Area returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&AreaDensity<T>> for &Distance<T>
where T: NumLike,

Dividing a Distance by a AreaDensity returns a value of type VolumePerMass

Source§

type Output = VolumePerMass<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&AreaDensity<T>> for Distance<T>
where T: NumLike,

Dividing a Distance by a AreaDensity returns a value of type VolumePerMass

Source§

type Output = VolumePerMass<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Distance<T>> for &Area<T>
where T: NumLike,

Dividing a Area by a Distance returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Distance<T>> for &AreaDensity<T>
where T: NumLike,

Dividing a AreaDensity by a Distance returns a value of type Density

Source§

type Output = Density<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Distance<T>> for &Energy<T>
where T: NumLike,

Dividing a Energy by a Distance returns a value of type Force

Source§

type Output = Force<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Distance<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a Distance returns a value of type InverseVolume

Source§

type Output = InverseVolume<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseDistance by a Distance returns a value of type InverseArea

Source§

type Output = InverseArea<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Distance<T>> for &InverseForce<T>
where T: NumLike,

Dividing a InverseForce by a Distance returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Distance<T>> for &Time<T>
where T: NumLike,

Dividing a Time by a Distance returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Distance<T>> for &Torque<T>
where T: NumLike,

Dividing a Torque by a Distance returns a value of type Force

Source§

type Output = Force<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Distance<T>> for &Volume<T>
where T: NumLike,

Dividing a Volume by a Distance returns a value of type Area

Source§

type Output = Area<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Distance<T>> for &VolumePerMass<T>
where T: NumLike,

Dividing a VolumePerMass by a Distance returns a value of type AreaPerMass

Source§

type Output = AreaPerMass<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a scalar value by a Distance unit value returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a scalar value by a Distance unit value returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a scalar value by a Distance unit value returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a scalar value by a Distance unit value returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Distance<T>> for Area<T>
where T: NumLike,

Dividing a Area by a Distance returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Distance<T>> for AreaDensity<T>
where T: NumLike,

Dividing a AreaDensity by a Distance returns a value of type Density

Source§

type Output = Density<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Distance<T>> for Energy<T>
where T: NumLike,

Dividing a Energy by a Distance returns a value of type Force

Source§

type Output = Force<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Distance<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a Distance returns a value of type InverseVolume

Source§

type Output = InverseVolume<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseDistance by a Distance returns a value of type InverseArea

Source§

type Output = InverseArea<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Distance<T>> for InverseForce<T>
where T: NumLike,

Dividing a InverseForce by a Distance returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Distance<T>> for Time<T>
where T: NumLike,

Dividing a Time by a Distance returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Distance<T>> for Torque<T>
where T: NumLike,

Dividing a Torque by a Distance returns a value of type Force

Source§

type Output = Force<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Distance<T>> for Volume<T>
where T: NumLike,

Dividing a Volume by a Distance returns a value of type Area

Source§

type Output = Area<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Distance<T>> for VolumePerMass<T>
where T: NumLike,

Dividing a VolumePerMass by a Distance returns a value of type AreaPerMass

Source§

type Output = AreaPerMass<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a scalar value by a Distance unit value returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a scalar value by a Distance unit value returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a scalar value by a Distance unit value returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a scalar value by a Distance unit value returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Energy<T>> for &Distance<T>
where T: NumLike,

Dividing a Distance by a Energy returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Energy<T>> for Distance<T>
where T: NumLike,

Dividing a Distance by a Energy returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for &Distance<T>
where T: NumLike,

Dividing a Distance by a InverseArea returns a value of type Volume

Source§

type Output = Volume<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&InverseArea<T>> for Distance<T>
where T: NumLike,

Dividing a Distance by a InverseArea returns a value of type Volume

Source§

type Output = Volume<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a Distance by a InverseDistance returns a value of type Area

Source§

type Output = Area<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 Distance<T>
where T: NumLike,

Dividing a Distance by a InverseDistance returns a value of type Area

Source§

type Output = Area<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<&InverseForce<T>> for &Distance<T>
where T: NumLike,

Dividing a Distance by a InverseForce returns a value of type Energy

Source§

type Output = Energy<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&InverseForce<T>> for Distance<T>
where T: NumLike,

Dividing a Distance by a InverseForce returns a value of type Energy

Source§

type Output = Energy<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = Distance<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 Distance<T>
where T: NumLike,

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

Source§

type Output = Distance<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<&Time<T>> for &Distance<T>
where T: NumLike,

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

Source§

type Output = Velocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Time<T>> for Distance<T>
where T: NumLike,

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

Source§

type Output = Velocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Torque<T>> for &Distance<T>
where T: NumLike,

Dividing a Distance by a Torque returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Torque<T>> for Distance<T>
where T: NumLike,

Dividing a Distance by a Torque returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = Time<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 Distance<T>
where T: NumLike,

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

Source§

type Output = Time<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<&Volume<T>> for &Distance<T>
where T: NumLike,

Dividing a Distance by a Volume returns a value of type InverseArea

Source§

type Output = InverseArea<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&Volume<T>> for Distance<T>
where T: NumLike,

Dividing a Distance by a Volume returns a value of type InverseArea

Source§

type Output = InverseArea<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&VolumePerMass<T>> for &Distance<T>
where T: NumLike,

Dividing a Distance by a VolumePerMass returns a value of type AreaDensity

Source§

type Output = AreaDensity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<&VolumePerMass<T>> for Distance<T>
where T: NumLike,

Dividing a Distance by a VolumePerMass returns a value of type AreaDensity

Source§

type Output = AreaDensity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Area<T>> for &Distance<T>
where T: NumLike,

Dividing a Distance by a Area returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Area<T>> for Distance<T>
where T: NumLike,

Dividing a Distance by a Area returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<AreaDensity<T>> for &Distance<T>
where T: NumLike,

Dividing a Distance by a AreaDensity returns a value of type VolumePerMass

Source§

type Output = VolumePerMass<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<AreaDensity<T>> for Distance<T>
where T: NumLike,

Dividing a Distance by a AreaDensity returns a value of type VolumePerMass

Source§

type Output = VolumePerMass<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Distance<T>> for &Area<T>
where T: NumLike,

Dividing a Area by a Distance returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Distance<T>> for &AreaDensity<T>
where T: NumLike,

Dividing a AreaDensity by a Distance returns a value of type Density

Source§

type Output = Density<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Distance<T>> for &Energy<T>
where T: NumLike,

Dividing a Energy by a Distance returns a value of type Force

Source§

type Output = Force<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Distance<T>> for &InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a Distance returns a value of type InverseVolume

Source§

type Output = InverseVolume<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseDistance by a Distance returns a value of type InverseArea

Source§

type Output = InverseArea<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Distance<T>> for &InverseForce<T>
where T: NumLike,

Dividing a InverseForce by a Distance returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Distance<T>> for &Time<T>
where T: NumLike,

Dividing a Time by a Distance returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Distance<T>> for &Torque<T>
where T: NumLike,

Dividing a Torque by a Distance returns a value of type Force

Source§

type Output = Force<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Distance<T>> for &Volume<T>
where T: NumLike,

Dividing a Volume by a Distance returns a value of type Area

Source§

type Output = Area<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Distance<T>> for &VolumePerMass<T>
where T: NumLike,

Dividing a VolumePerMass by a Distance returns a value of type AreaPerMass

Source§

type Output = AreaPerMass<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a scalar value by a Distance unit value returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a scalar value by a Distance unit value returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a scalar value by a Distance unit value returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a scalar value by a Distance unit value returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Distance<T>> for Area<T>
where T: NumLike,

Dividing a Area by a Distance returns a value of type Distance

Source§

type Output = Distance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Distance<T>> for AreaDensity<T>
where T: NumLike,

Dividing a AreaDensity by a Distance returns a value of type Density

Source§

type Output = Density<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Distance<T>> for Energy<T>
where T: NumLike,

Dividing a Energy by a Distance returns a value of type Force

Source§

type Output = Force<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Distance<T>> for InverseArea<T>
where T: NumLike,

Dividing a InverseArea by a Distance returns a value of type InverseVolume

Source§

type Output = InverseVolume<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a InverseDistance by a Distance returns a value of type InverseArea

Source§

type Output = InverseArea<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Distance<T>> for InverseForce<T>
where T: NumLike,

Dividing a InverseForce by a Distance returns a value of type InverseEnergy

Source§

type Output = InverseEnergy<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Distance<T>> for Time<T>
where T: NumLike,

Dividing a Time by a Distance returns a value of type TimePerDistance

Source§

type Output = TimePerDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Distance<T>> for Torque<T>
where T: NumLike,

Dividing a Torque by a Distance returns a value of type Force

Source§

type Output = Force<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = Frequency<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Distance<T>> for Volume<T>
where T: NumLike,

Dividing a Volume by a Distance returns a value of type Area

Source§

type Output = Area<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Distance<T>> for VolumePerMass<T>
where T: NumLike,

Dividing a VolumePerMass by a Distance returns a value of type AreaPerMass

Source§

type Output = AreaPerMass<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a scalar value by a Distance unit value returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a scalar value by a Distance unit value returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a scalar value by a Distance unit value returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a scalar value by a Distance unit value returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Energy<T>> for &Distance<T>
where T: NumLike,

Dividing a Distance by a Energy returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Energy<T>> for Distance<T>
where T: NumLike,

Dividing a Distance by a Energy returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for &Distance<T>
where T: NumLike,

Dividing a Distance by a InverseArea returns a value of type Volume

Source§

type Output = Volume<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<InverseArea<T>> for Distance<T>
where T: NumLike,

Dividing a Distance by a InverseArea returns a value of type Volume

Source§

type Output = Volume<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

Dividing a Distance by a InverseDistance returns a value of type Area

Source§

type Output = Area<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 Distance<T>
where T: NumLike,

Dividing a Distance by a InverseDistance returns a value of type Area

Source§

type Output = Area<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<InverseForce<T>> for &Distance<T>
where T: NumLike,

Dividing a Distance by a InverseForce returns a value of type Energy

Source§

type Output = Energy<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<InverseForce<T>> for Distance<T>
where T: NumLike,

Dividing a Distance by a InverseForce returns a value of type Energy

Source§

type Output = Energy<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = Distance<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 Distance<T>

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

Source§

type Output = Distance<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<Time<T>> for &Distance<T>
where T: NumLike,

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

Source§

type Output = Velocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Time<T>> for Distance<T>
where T: NumLike,

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

Source§

type Output = Velocity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Torque<T>> for &Distance<T>
where T: NumLike,

Dividing a Distance by a Torque returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Torque<T>> for Distance<T>
where T: NumLike,

Dividing a Distance by a Torque returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

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

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

Source§

type Output = Time<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 Distance<T>
where T: NumLike,

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

Source§

type Output = Time<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<Volume<T>> for &Distance<T>
where T: NumLike,

Dividing a Distance by a Volume returns a value of type InverseArea

Source§

type Output = InverseArea<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<Volume<T>> for Distance<T>
where T: NumLike,

Dividing a Distance by a Volume returns a value of type InverseArea

Source§

type Output = InverseArea<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<VolumePerMass<T>> for &Distance<T>
where T: NumLike,

Dividing a Distance by a VolumePerMass returns a value of type AreaDensity

Source§

type Output = AreaDensity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T> Div<VolumePerMass<T>> for Distance<T>
where T: NumLike,

Dividing a Distance by a VolumePerMass returns a value of type AreaDensity

Source§

type Output = AreaDensity<T>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl<T: NumLike> Div for &Distance<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 Distance<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 Distance<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 Distance<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<&Area<T>> for &Distance<T>
where T: NumLike,

Multiplying a Distance by a Area returns a value of type Volume

Source§

type Output = Volume<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a Area returns a value of type Volume

Source§

type Output = Volume<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a AreaPerMass returns a value of type VolumePerMass

Source§

type Output = VolumePerMass<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a AreaPerMass returns a value of type VolumePerMass

Source§

type Output = VolumePerMass<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a Density returns a value of type AreaDensity

Source§

type Output = AreaDensity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a Density returns a value of type AreaDensity

Source§

type Output = AreaDensity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Area by a Distance returns a value of type Volume

Source§

type Output = Volume<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 &AreaPerMass<T>
where T: NumLike,

Multiplying a AreaPerMass by a Distance returns a value of type VolumePerMass

Source§

type Output = VolumePerMass<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 &Density<T>
where T: NumLike,

Multiplying a Density by a Distance returns a value of type AreaDensity

Source§

type Output = AreaDensity<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 &Distance<T>
where T: NumLike,

Multiplying a Distance by a Distance returns a value of type Area

Source§

type Output = Area<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 &Force<T>
where T: NumLike,

Multiplying a Force by a Distance returns a value of type Energy

Source§

type Output = Energy<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<&Distance<T>> for &InverseAbsorbedDose<T>
where T: NumLike,

Multiplying a InverseAbsorbedDose by a Distance returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<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 &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a Distance returns a value of type InverseDistance

Source§

type Output = InverseDistance<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 &InverseDoseEquivalent<T>
where T: NumLike,

Multiplying a InverseDoseEquivalent by a Distance returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<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 &InverseEnergy<T>
where T: NumLike,

Multiplying a InverseEnergy by a Distance returns a value of type InverseForce

Source§

type Output = InverseForce<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 &InverseTorque<T>
where T: NumLike,

Multiplying a InverseTorque by a Distance returns a value of type InverseForce

Source§

type Output = InverseForce<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 &InverseVolume<T>
where T: NumLike,

Multiplying a InverseVolume by a Distance returns a value of type InverseArea

Source§

type Output = InverseArea<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 &TimePerDistance<T>
where T: NumLike,

Multiplying a TimePerDistance by a Distance returns a value of type Time

Source§

type Output = Time<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 Area<T>
where T: NumLike,

Multiplying a Area by a Distance returns a value of type Volume

Source§

type Output = Volume<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 AreaPerMass<T>
where T: NumLike,

Multiplying a AreaPerMass by a Distance returns a value of type VolumePerMass

Source§

type Output = VolumePerMass<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 Density<T>
where T: NumLike,

Multiplying a Density by a Distance returns a value of type AreaDensity

Source§

type Output = AreaDensity<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 Distance<T>
where T: NumLike,

Multiplying a Distance by a Distance returns a value of type Area

Source§

type Output = Area<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 Force<T>
where T: NumLike,

Multiplying a Force by a Distance returns a value of type Energy

Source§

type Output = Energy<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<&Distance<T>> for InverseAbsorbedDose<T>
where T: NumLike,

Multiplying a InverseAbsorbedDose by a Distance returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<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 InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a Distance returns a value of type InverseDistance

Source§

type Output = InverseDistance<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 InverseDoseEquivalent<T>
where T: NumLike,

Multiplying a InverseDoseEquivalent by a Distance returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<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 InverseEnergy<T>
where T: NumLike,

Multiplying a InverseEnergy by a Distance returns a value of type InverseForce

Source§

type Output = InverseForce<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 InverseTorque<T>
where T: NumLike,

Multiplying a InverseTorque by a Distance returns a value of type InverseForce

Source§

type Output = InverseForce<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 InverseVolume<T>
where T: NumLike,

Multiplying a InverseVolume by a Distance returns a value of type InverseArea

Source§

type Output = InverseArea<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 TimePerDistance<T>
where T: NumLike,

Multiplying a TimePerDistance by a Distance returns a value of type Time

Source§

type Output = Time<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 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 = Distance<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 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 = Distance<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 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 = Distance<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 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 = Distance<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 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 = Distance<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 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 = Distance<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 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 = Distance<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 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 = Distance<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 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 = Distance<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 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 = Distance<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<&Force<T>> for &Distance<T>
where T: NumLike,

Multiplying a Distance by a Force returns a value of type Energy

Source§

type Output = Energy<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a Force returns a value of type Energy

Source§

type Output = Energy<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Force<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 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<&InverseAbsorbedDose<T>> for &Distance<T>
where T: NumLike,

Multiplying a Distance by a InverseAbsorbedDose returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a InverseAbsorbedDose returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a InverseArea returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a InverseArea returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a InverseDoseEquivalent returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a InverseDoseEquivalent returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a InverseEnergy returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a InverseEnergy returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a InverseTorque returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a InverseTorque returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a InverseVolume returns a value of type InverseArea

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a InverseVolume returns a value of type InverseArea

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = Distance<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 Distance<T>
where T: NumLike,

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = Distance<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 &Distance<T>
where T: NumLike,

Multiplying a Distance by a TimePerDistance returns a value of type Time

Source§

type Output = Time<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 Distance<T>
where T: NumLike,

Multiplying a Distance by a TimePerDistance returns a value of type Time

Source§

type Output = Time<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<Area<T>> for &Distance<T>
where T: NumLike,

Multiplying a Distance by a Area returns a value of type Volume

Source§

type Output = Volume<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<Area<T>> for Distance<T>
where T: NumLike,

Multiplying a Distance by a Area returns a value of type Volume

Source§

type Output = Volume<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a AreaPerMass returns a value of type VolumePerMass

Source§

type Output = VolumePerMass<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<AreaPerMass<T>> for Distance<T>
where T: NumLike,

Multiplying a Distance by a AreaPerMass returns a value of type VolumePerMass

Source§

type Output = VolumePerMass<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a Density returns a value of type AreaDensity

Source§

type Output = AreaDensity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<Density<T>> for Distance<T>
where T: NumLike,

Multiplying a Distance by a Density returns a value of type AreaDensity

Source§

type Output = AreaDensity<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Area by a Distance returns a value of type Volume

Source§

type Output = Volume<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 &AreaPerMass<T>
where T: NumLike,

Multiplying a AreaPerMass by a Distance returns a value of type VolumePerMass

Source§

type Output = VolumePerMass<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 &Density<T>
where T: NumLike,

Multiplying a Density by a Distance returns a value of type AreaDensity

Source§

type Output = AreaDensity<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 &Distance<T>
where T: NumLike,

Multiplying a Distance by a Distance returns a value of type Area

Source§

type Output = Area<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 &Force<T>
where T: NumLike,

Multiplying a Force by a Distance returns a value of type Energy

Source§

type Output = Energy<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<Distance<T>> for &InverseAbsorbedDose<T>
where T: NumLike,

Multiplying a InverseAbsorbedDose by a Distance returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<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 &InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a Distance returns a value of type InverseDistance

Source§

type Output = InverseDistance<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 &InverseDoseEquivalent<T>
where T: NumLike,

Multiplying a InverseDoseEquivalent by a Distance returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<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 &InverseEnergy<T>
where T: NumLike,

Multiplying a InverseEnergy by a Distance returns a value of type InverseForce

Source§

type Output = InverseForce<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 &InverseTorque<T>
where T: NumLike,

Multiplying a InverseTorque by a Distance returns a value of type InverseForce

Source§

type Output = InverseForce<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 &InverseVolume<T>
where T: NumLike,

Multiplying a InverseVolume by a Distance returns a value of type InverseArea

Source§

type Output = InverseArea<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 &TimePerDistance<T>
where T: NumLike,

Multiplying a TimePerDistance by a Distance returns a value of type Time

Source§

type Output = Time<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 Area<T>
where T: NumLike,

Multiplying a Area by a Distance returns a value of type Volume

Source§

type Output = Volume<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 AreaPerMass<T>
where T: NumLike,

Multiplying a AreaPerMass by a Distance returns a value of type VolumePerMass

Source§

type Output = VolumePerMass<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 Density<T>
where T: NumLike,

Multiplying a Density by a Distance returns a value of type AreaDensity

Source§

type Output = AreaDensity<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 Force<T>
where T: NumLike,

Multiplying a Force by a Distance returns a value of type Energy

Source§

type Output = Energy<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<Distance<T>> for InverseAbsorbedDose<T>
where T: NumLike,

Multiplying a InverseAbsorbedDose by a Distance returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<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 InverseArea<T>
where T: NumLike,

Multiplying a InverseArea by a Distance returns a value of type InverseDistance

Source§

type Output = InverseDistance<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 InverseDoseEquivalent<T>
where T: NumLike,

Multiplying a InverseDoseEquivalent by a Distance returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<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 InverseEnergy<T>
where T: NumLike,

Multiplying a InverseEnergy by a Distance returns a value of type InverseForce

Source§

type Output = InverseForce<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 InverseTorque<T>
where T: NumLike,

Multiplying a InverseTorque by a Distance returns a value of type InverseForce

Source§

type Output = InverseForce<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 InverseVolume<T>
where T: NumLike,

Multiplying a InverseVolume by a Distance returns a value of type InverseArea

Source§

type Output = InverseArea<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 TimePerDistance<T>
where T: NumLike,

Multiplying a TimePerDistance by a Distance returns a value of type Time

Source§

type Output = Time<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 f32
where T: NumLike + From<f32>,

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = Distance<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 f64
where T: NumLike + From<f64>,

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = Distance<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 i16
where T: NumLike + From<i16>,

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = Distance<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 i32
where T: NumLike + From<i32>,

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = Distance<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 i64
where T: NumLike + From<i64>,

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = Distance<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 i8
where T: NumLike + From<i8>,

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = Distance<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 u16
where T: NumLike + From<u16>,

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = Distance<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 u32
where T: NumLike + From<u32>,

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = Distance<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 u64
where T: NumLike + From<u64>,

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = Distance<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 u8
where T: NumLike + From<u8>,

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = Distance<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<Force<T>> for &Distance<T>
where T: NumLike,

Multiplying a Distance by a Force returns a value of type Energy

Source§

type Output = Energy<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<Force<T>> for Distance<T>
where T: NumLike,

Multiplying a Distance by a Force returns a value of type Energy

Source§

type Output = Energy<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Force<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 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<InverseAbsorbedDose<T>> for &Distance<T>
where T: NumLike,

Multiplying a Distance by a InverseAbsorbedDose returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<InverseAbsorbedDose<T>> for Distance<T>
where T: NumLike,

Multiplying a Distance by a InverseAbsorbedDose returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a InverseArea returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<InverseArea<T>> for Distance<T>
where T: NumLike,

Multiplying a Distance by a InverseArea returns a value of type InverseDistance

Source§

type Output = InverseDistance<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a InverseDoseEquivalent returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<InverseDoseEquivalent<T>> for Distance<T>
where T: NumLike,

Multiplying a Distance by a InverseDoseEquivalent returns a value of type InverseAcceleration

Source§

type Output = InverseAcceleration<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a InverseEnergy returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<InverseEnergy<T>> for Distance<T>
where T: NumLike,

Multiplying a Distance by a InverseEnergy returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a InverseTorque returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<InverseTorque<T>> for Distance<T>
where T: NumLike,

Multiplying a Distance by a InverseTorque returns a value of type InverseForce

Source§

type Output = InverseForce<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

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

Multiplying a Distance by a InverseVolume returns a value of type InverseArea

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T> Mul<InverseVolume<T>> for Distance<T>
where T: NumLike,

Multiplying a Distance by a InverseVolume returns a value of type InverseArea

Source§

type Output = InverseArea<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T: NumLike> Mul<T> for &Distance<T>

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

Source§

type Output = Distance<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 Distance<T>

Multiplying a unit value by a scalar value returns a unit value

Source§

type Output = Distance<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 &Distance<T>
where T: NumLike,

Multiplying a Distance by a TimePerDistance returns a value of type Time

Source§

type Output = Time<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 Distance<T>
where T: NumLike,

Multiplying a Distance by a TimePerDistance returns a value of type Time

Source§

type Output = Time<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 for Distance<T>
where T: NumLike,

Multiplying a Distance by a Distance returns a value of type Area

Source§

type Output = Area<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: NumLike> MulAssign<T> for Distance<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 &Distance<T>

Flips the sign of this unit value (automatically clones the referenced data for convenient ergonomics)

Source§

type Output = Distance<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 Distance<T>

Flips the sign of this unit value

Source§

type Output = Distance<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 Distance<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 Distance<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 Distance<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 &Distance<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 = Distance<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 Distance<T>

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

Source§

type Output = Distance<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 Distance<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 Distance<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 Distance<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 Distance<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for Distance<T>
where T: RefUnwindSafe,

§

impl<T> Send for Distance<T>
where T: Send,

§

impl<T> Sync for Distance<T>
where T: Sync,

§

impl<T> Unpin for Distance<T>
where T: Unpin,

§

impl<T> UnsafeUnpin for Distance<T>
where T: UnsafeUnpin,

§

impl<T> UnwindSafe for Distance<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.