[][src]Struct opcua_types::node_id::ExpandedNodeId

pub struct ExpandedNodeId {
    pub node_id: NodeId,
    pub namespace_uri: UAString,
    pub server_index: u32,
}

A NodeId that allows the namespace URI to be specified instead of an index.

Fields

node_id: NodeIdnamespace_uri: UAStringserver_index: u32

Methods

impl ExpandedNodeId[src]

pub fn new<T>(value: T) -> ExpandedNodeId where
    T: 'static + Into<ExpandedNodeId>, 
[src]

Creates an expanded node id from a node id

pub fn null() -> ExpandedNodeId[src]

pub fn is_null(&self) -> bool[src]

Trait Implementations

impl BinaryEncoder<ExpandedNodeId> for ExpandedNodeId[src]

impl<'a> Into<ExpandedNodeId> for &'a NodeId[src]

impl Into<ExpandedNodeId> for DataTypeId[src]

impl Into<ExpandedNodeId> for ReferenceTypeId[src]

impl Into<ExpandedNodeId> for ObjectTypeId[src]

impl Into<ExpandedNodeId> for VariableTypeId[src]

impl Into<ExpandedNodeId> for ObjectId[src]

impl Into<ExpandedNodeId> for VariableId[src]

impl Into<ExpandedNodeId> for MethodId[src]

impl From<NodeId> for ExpandedNodeId[src]

impl From<ExpandedNodeId> for Variant[src]

impl Clone for ExpandedNodeId[src]

impl PartialEq<ExpandedNodeId> for ExpandedNodeId[src]

impl Display for ExpandedNodeId[src]

impl Debug for ExpandedNodeId[src]

impl FromStr for ExpandedNodeId[src]

type Err = StatusCode

The associated error which can be returned from parsing.

impl StructuralPartialEq for ExpandedNodeId[src]

impl Serialize for ExpandedNodeId[src]

impl<'de> Deserialize<'de> for ExpandedNodeId[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]