pub enum SpecificEnergyUnit {
JoulePerKg,
KiloJoulePerKg,
MegaJoulePerKg,
Km2PerS2,
}Expand description
Display/conversion units for SpecificEnergy.
Variants§
JoulePerKg
Joules per kilogram (J/kg).
KiloJoulePerKg
Kilojoules per kilogram (kJ/kg).
MegaJoulePerKg
Megajoules per kilogram (MJ/kg).
Km2PerS2
Square kilometers per second squared (km²/s²) – common in astrodynamics.
Trait Implementations§
Source§impl Clone for SpecificEnergyUnit
impl Clone for SpecificEnergyUnit
Source§fn clone(&self) -> SpecificEnergyUnit
fn clone(&self) -> SpecificEnergyUnit
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SpecificEnergyUnit
impl Debug for SpecificEnergyUnit
Source§impl PartialEq for SpecificEnergyUnit
impl PartialEq for SpecificEnergyUnit
impl Copy for SpecificEnergyUnit
impl Eq for SpecificEnergyUnit
impl StructuralPartialEq for SpecificEnergyUnit
Auto Trait Implementations§
impl Freeze for SpecificEnergyUnit
impl RefUnwindSafe for SpecificEnergyUnit
impl Send for SpecificEnergyUnit
impl Sync for SpecificEnergyUnit
impl Unpin for SpecificEnergyUnit
impl UnsafeUnpin for SpecificEnergyUnit
impl UnwindSafe for SpecificEnergyUnit
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