pub struct ratio;Expand description
Trait Implementations§
Source§impl Conversion<f32> for ratio
impl Conversion<f32> for ratio
Source§fn coefficient() -> <ratio as Conversion<f32>>::T
fn coefficient() -> <ratio as Conversion<f32>>::T
Coefficient portion of conversion factor for
converting the given unit to the base unit for the quantity:
(value * coefficient()) + constant(). Implementation should return the multiplicative identity (Self::T::one()) if
no coefficient exists.Source§fn constant(op: ConstantOp) -> <ratio as Conversion<f32>>::T
fn constant(op: ConstantOp) -> <ratio as Conversion<f32>>::T
Constant portion of conversion factor for
converting the given unit to the base unit for the quantity:
(value * coefficient()) + constant(). Implementation should return the additive identity (Self::T::zero()) if no
constant exists. See ConstantOp documentation for details about
parameter use to ensure the method optimizes correctly.Source§fn conversion(&self) -> Self::Twhere
Self: Sized,
fn conversion(&self) -> Self::Twhere
Self: Sized,
Instance conversion factor. Read more
Source§impl Conversion<f64> for ratio
impl Conversion<f64> for ratio
Source§fn coefficient() -> <ratio as Conversion<f64>>::T
fn coefficient() -> <ratio as Conversion<f64>>::T
Coefficient portion of conversion factor for
converting the given unit to the base unit for the quantity:
(value * coefficient()) + constant(). Implementation should return the multiplicative identity (Self::T::one()) if
no coefficient exists.Source§fn constant(op: ConstantOp) -> <ratio as Conversion<f64>>::T
fn constant(op: ConstantOp) -> <ratio as Conversion<f64>>::T
Constant portion of conversion factor for
converting the given unit to the base unit for the quantity:
(value * coefficient()) + constant(). Implementation should return the additive identity (Self::T::zero()) if no
constant exists. See ConstantOp documentation for details about
parameter use to ensure the method optimizes correctly.Source§fn conversion(&self) -> Self::Twhere
Self: Sized,
fn conversion(&self) -> Self::Twhere
Self: Sized,
Instance conversion factor. Read more
impl Conversion<f32> for ratio
impl Conversion<f64> for ratio
impl Copy for ratio
impl Unit for ratio
Auto Trait Implementations§
impl Freeze for ratio
impl RefUnwindSafe for ratio
impl Send for ratio
impl Sync for ratio
impl Unpin for ratio
impl UnwindSafe for ratio
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more