pub struct ParsedAttributeOperand {
pub node_id: NodeId,
pub alias: UAString,
pub browse_path: RelativePath,
pub attribute_id: AttributeId,
pub index_range: NumericRange,
}Expand description
Parsed version of the raw opcua_types::AttributeOperand
Fields§
§node_id: NodeIdNode ID of the node to get attribute from.
alias: UAStringAttribute alias.
browse_path: RelativePathBrowse path to the property to get from.
attribute_id: AttributeIdAttribute ID to get.
index_range: NumericRangeRange of attribute to get.
Trait Implementations§
Source§impl Clone for ParsedAttributeOperand
impl Clone for ParsedAttributeOperand
Source§fn clone(&self) -> ParsedAttributeOperand
fn clone(&self) -> ParsedAttributeOperand
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 moreAuto Trait Implementations§
impl Freeze for ParsedAttributeOperand
impl RefUnwindSafe for ParsedAttributeOperand
impl Send for ParsedAttributeOperand
impl Sync for ParsedAttributeOperand
impl Unpin for ParsedAttributeOperand
impl UnsafeUnpin for ParsedAttributeOperand
impl UnwindSafe for ParsedAttributeOperand
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