Enum mccs_db::ValueInterpretation
source · pub enum ValueInterpretation {
Continuous,
NonContinuous,
NonZeroWrite,
VcpVersion,
}Expand description
Describes how to interpret a value’s raw value.
Variants§
Continuous
Generic unparsed data.
NonContinuous
Generic unparsed data.
NonZeroWrite
Must be set to a non-zero value in order to run the operation.
VcpVersion
MCCS version is returned in mh (major version) and ml (minor/revision).
Implementations§
Trait Implementations§
source§impl Clone for ValueInterpretation
impl Clone for ValueInterpretation
source§fn clone(&self) -> ValueInterpretation
fn clone(&self) -> ValueInterpretation
Returns a copy 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 ValueInterpretation
impl Debug for ValueInterpretation
source§impl Hash for ValueInterpretation
impl Hash for ValueInterpretation
source§impl Ord for ValueInterpretation
impl Ord for ValueInterpretation
source§fn cmp(&self, other: &ValueInterpretation) -> Ordering
fn cmp(&self, other: &ValueInterpretation) -> Ordering
1.21.0 · 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<ValueInterpretation> for ValueInterpretation
impl PartialEq<ValueInterpretation> for ValueInterpretation
source§fn eq(&self, other: &ValueInterpretation) -> bool
fn eq(&self, other: &ValueInterpretation) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<ValueInterpretation> for ValueInterpretation
impl PartialOrd<ValueInterpretation> for ValueInterpretation
source§fn partial_cmp(&self, other: &ValueInterpretation) -> Option<Ordering>
fn partial_cmp(&self, other: &ValueInterpretation) -> Option<Ordering>
1.0.0 · source§fn 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