pub struct ReferenceDescription {
pub reference_type_id: NodeId,
pub is_forward: bool,
pub node_id: ExpandedNodeId,
pub browse_name: QualifiedName,
pub display_name: LocalizedText,
pub node_class: i32,
pub type_definition: ExpandedNodeId,
}Expand description
ReferenceDescription (Part 4 §7.29) — one browse result entry.
Fields§
§reference_type_id: NodeIdReferenceType traversed.
is_forward: booltrue for a forward reference.
node_id: ExpandedNodeIdTarget node.
browse_name: QualifiedNameTarget BrowseName.
display_name: LocalizedTextTarget DisplayName.
node_class: i32Target NodeClass (enum value).
type_definition: ExpandedNodeIdTarget TypeDefinition.
Trait Implementations§
Source§impl Clone for ReferenceDescription
impl Clone for ReferenceDescription
Source§fn clone(&self) -> ReferenceDescription
fn clone(&self) -> ReferenceDescription
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 ReferenceDescription
impl Debug for ReferenceDescription
Source§impl PartialEq for ReferenceDescription
impl PartialEq for ReferenceDescription
Source§fn eq(&self, other: &ReferenceDescription) -> bool
fn eq(&self, other: &ReferenceDescription) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReferenceDescription
Source§impl UaDecode for ReferenceDescription
impl UaDecode for ReferenceDescription
Auto Trait Implementations§
impl Freeze for ReferenceDescription
impl RefUnwindSafe for ReferenceDescription
impl Send for ReferenceDescription
impl Sync for ReferenceDescription
impl Unpin for ReferenceDescription
impl UnsafeUnpin for ReferenceDescription
impl UnwindSafe for ReferenceDescription
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