pub struct ReadValueId {
pub node_id: NodeId,
pub attribute_id: u32,
pub index_range: String,
pub data_encoding: QualifiedName,
}Expand description
ReadValueId (Part 4 §7.28).
Fields§
§node_id: NodeIdNode to read.
attribute_id: u32Attribute id (e.g. ATTRIBUTE_VALUE).
index_range: StringIndex range (empty = whole value).
data_encoding: QualifiedNameRequested data encoding (empty QualifiedName = default).
Trait Implementations§
Source§impl Clone for ReadValueId
impl Clone for ReadValueId
Source§fn clone(&self) -> ReadValueId
fn clone(&self) -> ReadValueId
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReadValueId
impl Debug for ReadValueId
Source§impl PartialEq for ReadValueId
impl PartialEq for ReadValueId
Source§fn eq(&self, other: &ReadValueId) -> bool
fn eq(&self, other: &ReadValueId) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReadValueId
Source§impl UaDecode for ReadValueId
impl UaDecode for ReadValueId
Auto Trait Implementations§
impl Freeze for ReadValueId
impl RefUnwindSafe for ReadValueId
impl Send for ReadValueId
impl Sync for ReadValueId
impl Unpin for ReadValueId
impl UnsafeUnpin for ReadValueId
impl UnwindSafe for ReadValueId
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