pub struct WriteValue {
pub node_id: NodeId,
pub attribute_id: u32,
pub index_range: String,
pub value: DataValue,
}Expand description
WriteValue (Part 4 §5.11.4) — a single node/attribute write.
Fields§
§node_id: NodeIdNode to write.
attribute_id: u32Attribute id (e.g. ATTRIBUTE_VALUE).
index_range: StringIndex range (empty = whole value).
value: DataValueThe value to write.
Trait Implementations§
Source§impl Clone for WriteValue
impl Clone for WriteValue
Source§fn clone(&self) -> WriteValue
fn clone(&self) -> WriteValue
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 WriteValue
impl Debug for WriteValue
Source§impl PartialEq for WriteValue
impl PartialEq for WriteValue
Source§fn eq(&self, other: &WriteValue) -> bool
fn eq(&self, other: &WriteValue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WriteValue
Source§impl UaDecode for WriteValue
impl UaDecode for WriteValue
Auto Trait Implementations§
impl Freeze for WriteValue
impl RefUnwindSafe for WriteValue
impl Send for WriteValue
impl Sync for WriteValue
impl Unpin for WriteValue
impl UnsafeUnpin for WriteValue
impl UnwindSafe for WriteValue
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