pub struct SimpleAttributeOperand {
pub type_definition_id: NodeId,
pub browse_path: Vec<QualifiedName>,
pub attribute_id: AttributeId,
pub index_range: String,
}Expand description
Simple attribute operand — specifies a path to an attribute of an event field relative to a type definition.
OPC UA Part 4, Section 7.4.4.5.
Fields§
§type_definition_id: NodeIdThe NodeId of the event type this operand applies to.
Typically BaseEventType (i=2041) or a subtype.
browse_path: Vec<QualifiedName>Browse path from the type definition node to the target node. Each element is a QualifiedName for the BrowseName of the next node.
attribute_id: AttributeIdThe attribute of the target node to read.
index_range: StringIndex range for array values (empty string for no range).
Trait Implementations§
Source§impl Clone for SimpleAttributeOperand
impl Clone for SimpleAttributeOperand
Source§fn clone(&self) -> SimpleAttributeOperand
fn clone(&self) -> SimpleAttributeOperand
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 SimpleAttributeOperand
impl Debug for SimpleAttributeOperand
Source§impl<'de> Deserialize<'de> for SimpleAttributeOperand
impl<'de> Deserialize<'de> for SimpleAttributeOperand
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SimpleAttributeOperand
impl RefUnwindSafe for SimpleAttributeOperand
impl Send for SimpleAttributeOperand
impl Sync for SimpleAttributeOperand
impl Unpin for SimpleAttributeOperand
impl UnsafeUnpin for SimpleAttributeOperand
impl UnwindSafe for SimpleAttributeOperand
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more