pub enum EcucParameterValue {
AddInfo(EcucAddInfoParamValue),
Numerical(EcucNumericalParamValue),
Textual(EcucTextualParamValue),
}
Expand description
The EcucParameterValue
is an enum that can hold an EcucAddInfoParamValue
,
an EcucNumericalParamValue
or an EcucTextualParamValue
.
Variants§
AddInfo(EcucAddInfoParamValue)
AddInfo parameter value
Numerical(EcucNumericalParamValue)
Numerical parameter value
Textual(EcucTextualParamValue)
Textual parameter value
Trait Implementations§
Source§impl Clone for EcucParameterValue
impl Clone for EcucParameterValue
Source§fn clone(&self) -> EcucParameterValue
fn clone(&self) -> EcucParameterValue
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 EcucParameterValue
impl Debug for EcucParameterValue
Source§impl Hash for EcucParameterValue
impl Hash for EcucParameterValue
Source§impl PartialEq for EcucParameterValue
impl PartialEq for EcucParameterValue
Source§impl TryFrom<Element> for EcucParameterValue
impl TryFrom<Element> for EcucParameterValue
impl Eq for EcucParameterValue
impl StructuralPartialEq for EcucParameterValue
Auto Trait Implementations§
impl Freeze for EcucParameterValue
impl !RefUnwindSafe for EcucParameterValue
impl Send for EcucParameterValue
impl Sync for EcucParameterValue
impl Unpin for EcucParameterValue
impl !UnwindSafe for EcucParameterValue
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.