pub struct ParsedReadValueId {
pub node_id: NodeId,
pub attribute_id: AttributeId,
pub index_range: NumericRange,
pub data_encoding: DataEncoding,
}
Expand description
Parsed and validated version of a raw ReadValueId from OPC-UA.
Fields§
§node_id: NodeId
ID of the node to read from.
attribute_id: AttributeId
Attribute ID to read.
index_range: NumericRange
Index range to read.
data_encoding: DataEncoding
Requested data encoding.
Implementations§
Source§impl ParsedReadValueId
impl ParsedReadValueId
Sourcepub fn parse(val: ReadValueId) -> Result<Self, StatusCode>
pub fn parse(val: ReadValueId) -> Result<Self, StatusCode>
Try to parse from a ReadValueId
.
Trait Implementations§
Source§impl Clone for ParsedReadValueId
impl Clone for ParsedReadValueId
Source§fn clone(&self) -> ParsedReadValueId
fn clone(&self) -> ParsedReadValueId
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 ParsedReadValueId
impl Debug for ParsedReadValueId
Auto Trait Implementations§
impl Freeze for ParsedReadValueId
impl RefUnwindSafe for ParsedReadValueId
impl Send for ParsedReadValueId
impl Sync for ParsedReadValueId
impl Unpin for ParsedReadValueId
impl UnwindSafe for ParsedReadValueId
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