pub enum CMAExportType {
LiquidFlow,
GasFlow,
GasVolume,
LiquidVolume,
EnergyDissipation,
Kla,
Other,
}Expand description
Legacy type of exported type value in a CM model
Variants§
Trait Implementations§
Source§impl Clone for CMAExportType
impl Clone for CMAExportType
Source§fn clone(&self) -> CMAExportType
fn clone(&self) -> CMAExportType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CMAExportType
impl Debug for CMAExportType
Source§impl<'de> Deserialize<'de> for CMAExportType
impl<'de> Deserialize<'de> for CMAExportType
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 From<CMAExportType> for CMExportType
impl From<CMAExportType> for CMExportType
Source§fn from(value: CMAExportType) -> Self
fn from(value: CMAExportType) -> Self
Converts to this type from the input type.
Source§impl From<CMExportType> for CMAExportType
impl From<CMExportType> for CMAExportType
Source§fn from(val: CMExportType) -> Self
fn from(val: CMExportType) -> Self
Converts to this type from the input type.
Source§impl From<i8> for CMAExportType
impl From<i8> for CMAExportType
Source§impl Hash for CMAExportType
impl Hash for CMAExportType
Source§impl Ord for CMAExportType
impl Ord for CMAExportType
Source§fn cmp(&self, other: &CMAExportType) -> Ordering
fn cmp(&self, other: &CMAExportType) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CMAExportType
impl PartialEq for CMAExportType
Source§fn eq(&self, other: &CMAExportType) -> bool
fn eq(&self, other: &CMAExportType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for CMAExportType
impl PartialOrd for CMAExportType
Source§impl Serialize for CMAExportType
impl Serialize for CMAExportType
impl Copy for CMAExportType
impl Eq for CMAExportType
impl StructuralPartialEq for CMAExportType
Auto Trait Implementations§
impl Freeze for CMAExportType
impl RefUnwindSafe for CMAExportType
impl Send for CMAExportType
impl Sync for CMAExportType
impl Unpin for CMAExportType
impl UnsafeUnpin for CMAExportType
impl UnwindSafe for CMAExportType
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,
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.