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§
Source§impl Clone for AttributeValuedForObjectType
impl Clone for AttributeValuedForObjectType
Source§fn clone(&self) -> AttributeValuedForObjectType
fn clone(&self) -> AttributeValuedForObjectType
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 AttributeValuedForObjectType
impl Debug for AttributeValuedForObjectType
Source§impl PartialEq for AttributeValuedForObjectType
impl PartialEq for AttributeValuedForObjectType
Source§fn eq(&self, other: &AttributeValuedForObjectType) -> bool
fn eq(&self, other: &AttributeValuedForObjectType) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AttributeValuedForObjectType
Auto Trait Implementations§
impl Freeze for AttributeValuedForObjectType
impl RefUnwindSafe for AttributeValuedForObjectType
impl Send for AttributeValuedForObjectType
impl Sync for AttributeValuedForObjectType
impl Unpin for AttributeValuedForObjectType
impl UnwindSafe for AttributeValuedForObjectType
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