Struct quantities::energy::Energy
source · [−]pub struct Energy { /* private fields */ }Expand description
Property that must be transferred to an object in order to perform work on or to heat it.
Definition: Force·Length
Reference unit: Joule (‘J’ = ‘N·m’ = ‘kg·m²/s²’)
Predefined units:
| Symbol | Name | Definition | Equivalent in ‘J’ |
|---|---|---|---|
| Nm | Newton Meter | N·m | 1 |
| Ws | Watt Second | W·s | 1 |
| kWh | Kilowatt Hour | kW·h | 3600000 |
Trait Implementations
sourceimpl Div<Duration> for Energy where
Self: HasRefUnit,
Duration: HasRefUnit,
impl Div<Duration> for Energy where
Self: HasRefUnit,
Duration: HasRefUnit,
sourceimpl Div<Force> for Energy where
Self: HasRefUnit,
Force: HasRefUnit,
impl Div<Force> for Energy where
Self: HasRefUnit,
Force: HasRefUnit,
sourceimpl Div<Length> for Energy where
Self: HasRefUnit,
Length: HasRefUnit,
impl Div<Length> for Energy where
Self: HasRefUnit,
Length: HasRefUnit,
sourceimpl Div<Power> for Energy where
Self: HasRefUnit,
Power: HasRefUnit,
impl Div<Power> for Energy where
Self: HasRefUnit,
Power: HasRefUnit,
sourceimpl HasRefUnit for Energy
impl HasRefUnit for Energy
sourceconst REF_UNIT: EnergyUnit = EnergyUnit::Joule
const REF_UNIT: EnergyUnit = EnergyUnit::Joule
Unit used as reference for scaling the units of Self::UnitType.
sourcefn unit_from_scale(amnt: AmountT) -> Option<Self::UnitType>
fn unit_from_scale(amnt: AmountT) -> Option<Self::UnitType>
Returns Some(unit) where unit.scale() == amnt, or None if
there is no such unit. Read more
sourcefn equiv_amount(&self, unit: Self::UnitType) -> AmountT
fn equiv_amount(&self, unit: Self::UnitType) -> AmountT
Returns factor so that factor * unit == self.
sourcefn convert(&self, to_unit: Self::UnitType) -> Self
fn convert(&self, to_unit: Self::UnitType) -> Self
Returns qty where qty == self and qty.unit() is to_unit.
sourcefn eq(&self, other: &Self) -> bool
fn eq(&self, other: &Self) -> bool
Returns true, if self and other have equivalent amounts, otherwise
false. Read more
sourceimpl PartialEq<Energy> for Energy
impl PartialEq<Energy> for Energy
sourceimpl PartialOrd<Energy> for Energy
impl PartialOrd<Energy> for Energy
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
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 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
sourceimpl Quantity for Energy
impl Quantity for Energy
type UnitType = EnergyUnit
type UnitType = EnergyUnit
Associated type of unit
sourcefn new(amount: AmountT, unit: Self::UnitType) -> Self
fn new(amount: AmountT, unit: Self::UnitType) -> Self
Returns a new instance of the type implementing Quantity.
sourcefn iter_units<'a>() -> Iter<'a, Self::UnitType>
fn iter_units<'a>() -> Iter<'a, Self::UnitType>
Returns an iterator over the variants of Self::UnitType.
sourcefn unit_from_symbol(symbol: &str) -> Option<Self::UnitType>
fn unit_from_symbol(symbol: &str) -> Option<Self::UnitType>
Returns Some(unit) where unit.symbol() == symbol, or None if
there is no such unit. Read more
sourcefn eq(&self, other: &Self) -> bool
fn eq(&self, other: &Self) -> bool
Return true if self and other have the same unit and their amounts
are equal, otherwise false. Read more
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
Returns the partial order of selfs and others amounts, if both have
the same unit, otherwise None. Read more
sourcefn add(self, rhs: Self) -> Self
fn add(self, rhs: Self) -> Self
Returns the sum of self and other, if both have the same unit. Read more
sourcefn sub(self, rhs: Self) -> Self
fn sub(self, rhs: Self) -> Self
Returns the difference between self and other, if both have the same
unit. Read more
impl Copy for Energy
impl Eq for Energy
Auto Trait Implementations
impl RefUnwindSafe for Energy
impl Send for Energy
impl Sync for Energy
impl Unpin for Energy
impl UnwindSafe for Energy
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more