pub enum AttributeValuedForObjectType {
RawAttributeValue(AttributeValue),
NetworkNodeAttributeValue(String, AttributeValue),
MessageDefinitionAttributeValue(MessageId, Option<AttributeValue>),
SignalAttributeValue(MessageId, String, AttributeValue),
EnvVariableAttributeValue(String, AttributeValue),
}
Variants
RawAttributeValue(AttributeValue)
NetworkNodeAttributeValue(String, AttributeValue)
MessageDefinitionAttributeValue(MessageId, Option<AttributeValue>)
SignalAttributeValue(MessageId, String, AttributeValue)
EnvVariableAttributeValue(String, AttributeValue)
Trait Implementations
sourceimpl Clone for AttributeValuedForObjectType
impl Clone for AttributeValuedForObjectType
sourcefn clone(&self) -> AttributeValuedForObjectType
fn clone(&self) -> AttributeValuedForObjectType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AttributeValuedForObjectType
impl Debug for AttributeValuedForObjectType
sourceimpl PartialEq<AttributeValuedForObjectType> for AttributeValuedForObjectType
impl PartialEq<AttributeValuedForObjectType> for AttributeValuedForObjectType
sourcefn eq(&self, other: &AttributeValuedForObjectType) -> bool
fn eq(&self, other: &AttributeValuedForObjectType) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &AttributeValuedForObjectType) -> bool
fn ne(&self, other: &AttributeValuedForObjectType) -> bool
This method tests for !=
.
impl StructuralPartialEq for AttributeValuedForObjectType
Auto Trait Implementations
impl RefUnwindSafe for AttributeValuedForObjectType
impl Send for AttributeValuedForObjectType
impl Sync for AttributeValuedForObjectType
impl Unpin for AttributeValuedForObjectType
impl UnwindSafe for AttributeValuedForObjectType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more