pub enum EntropyUnit {
JPerMolK,
KJPerKgK,
JPerKgK,
}Expand description
Entropy / heat-capacity unit (energy per temperature).
Variants§
JPerMolK
J/(mol·K) (REFPROP native)
KJPerKgK
kJ/(kg·K) (requires molar mass)
JPerKgK
J/(kg·K) (requires molar mass)
Trait Implementations§
Source§impl Clone for EntropyUnit
impl Clone for EntropyUnit
Source§fn clone(&self) -> EntropyUnit
fn clone(&self) -> EntropyUnit
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 EntropyUnit
impl Debug for EntropyUnit
Source§impl<'de> Deserialize<'de> for EntropyUnit
impl<'de> Deserialize<'de> for EntropyUnit
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for EntropyUnit
impl PartialEq for EntropyUnit
Source§impl Serialize for EntropyUnit
impl Serialize for EntropyUnit
impl Copy for EntropyUnit
impl Eq for EntropyUnit
impl StructuralPartialEq for EntropyUnit
Auto Trait Implementations§
impl Freeze for EntropyUnit
impl RefUnwindSafe for EntropyUnit
impl Send for EntropyUnit
impl Sync for EntropyUnit
impl Unpin for EntropyUnit
impl UnsafeUnpin for EntropyUnit
impl UnwindSafe for EntropyUnit
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