pub enum EcucAnyReferenceValue {
Instance(EcucInstanceReferenceValue),
Reference(EcucReferenceValue),
}
Expand description
The EcucAnyReferenceValue
is an enum that can hold either of the reference value types
It is used as a return type for the iterator of reference values
Variants§
Instance(EcucInstanceReferenceValue)
An instance reference value
Reference(EcucReferenceValue)
A normal reference value
Trait Implementations§
Source§impl Clone for EcucAnyReferenceValue
impl Clone for EcucAnyReferenceValue
Source§fn clone(&self) -> EcucAnyReferenceValue
fn clone(&self) -> EcucAnyReferenceValue
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 EcucAnyReferenceValue
impl Debug for EcucAnyReferenceValue
Source§impl Hash for EcucAnyReferenceValue
impl Hash for EcucAnyReferenceValue
Source§impl PartialEq for EcucAnyReferenceValue
impl PartialEq for EcucAnyReferenceValue
Source§impl TryFrom<Element> for EcucAnyReferenceValue
impl TryFrom<Element> for EcucAnyReferenceValue
impl Eq for EcucAnyReferenceValue
impl StructuralPartialEq for EcucAnyReferenceValue
Auto Trait Implementations§
impl Freeze for EcucAnyReferenceValue
impl !RefUnwindSafe for EcucAnyReferenceValue
impl Send for EcucAnyReferenceValue
impl Sync for EcucAnyReferenceValue
impl Unpin for EcucAnyReferenceValue
impl !UnwindSafe for EcucAnyReferenceValue
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.