pub struct VariableNode {
pub requested_new_node_id: Option<NodeId>,
pub parent_node_id: NodeId,
pub reference_type_id: NodeId,
pub browse_name: QualifiedName,
pub type_definition: NodeId,
pub attributes: VariableAttributes,
}
Fields§
§requested_new_node_id: Option<NodeId>
§parent_node_id: NodeId
§reference_type_id: NodeId
§browse_name: QualifiedName
§type_definition: NodeId
§attributes: VariableAttributes
Trait Implementations§
Source§impl Clone for VariableNode
impl Clone for VariableNode
Source§fn clone(&self) -> VariableNode
fn clone(&self) -> VariableNode
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 VariableNode
impl RefUnwindSafe for VariableNode
impl Send for VariableNode
impl Sync for VariableNode
impl Unpin for VariableNode
impl UnwindSafe for VariableNode
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