Struct opcua_types::node_id::NodeId [] [src]

pub struct NodeId {
    pub namespace: UInt16,
    pub identifier: Identifier,
}

An identifier for a node in the address space of an OPC UA Server.

Fields

The index for a namespace

The identifier for the node in the address space

Methods

impl NodeId
[src]

[src]

[src]

Construct a string node id

[src]

Test if the node id is null, i.e. 0 namespace and 0 identifier

[src]

Returns a null node id

[src]

[src]

Extracts an ObjectId from a node id, providing the node id holds an object id

[src]

[src]

[src]

Test if the node id is numeric

[src]

Test if the node id is a string

[src]

Test if the node id is a guid

[src]

Test if the node id us a byte string

Trait Implementations

impl PartialEq for NodeId
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for NodeId
[src]

impl Clone for NodeId
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for NodeId
[src]

[src]

Formats the value using the given formatter.

impl Hash for NodeId
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Default for NodeId
[src]

[src]

Returns the "default value" for a type. Read more

impl BinaryEncoder<NodeId> for NodeId
[src]

[src]

Returns the byte length of the structure. This calculation should be exact and as efficient as possible. Read more

[src]

Encodes the instance to the write stream.

[src]

Decodes an instance from the read stream.

impl FromStr for NodeId
[src]

The associated error which can be returned from parsing.

[src]

Parses a string s to return a value of this type. Read more

impl Into<String> for NodeId
[src]

[src]

Performs the conversion.

impl<'a> From<(UInt16, &'a str)> for NodeId
[src]

[src]

Performs the conversion.

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

[src]

Performs the conversion.