Struct opcua_types::basic_types::QualifiedName
[−]
[src]
pub struct QualifiedName {
pub namespace_index: UInt16,
pub name: UAString,
}A numeric identifier for a error or condition that is associated with a value or an operation. Data type ID 19 A name qualified by a namespace. Data type ID 20
Fields
namespace_index: UInt16
The namespace index.
name: UAString
The name.
Methods
impl QualifiedName[src]
fn new(namespace_index: UInt16, name: &str) -> QualifiedName[src]
fn null() -> QualifiedName[src]
fn is_null(&self) -> bool[src]
Trait Implementations
impl PartialEq for QualifiedName[src]
fn eq(&self, __arg_0: &QualifiedName) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &QualifiedName) -> bool[src]
This method tests for !=.
impl Debug for QualifiedName[src]
impl Clone for QualifiedName[src]
fn clone(&self) -> QualifiedName[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl BinaryEncoder<QualifiedName> for QualifiedName[src]
fn byte_len(&self) -> usize[src]
Returns the byte length of the structure. This calculation should be exact and as efficient as possible. Read more
fn encode<S: Write>(&self, stream: &mut S) -> EncodingResult<usize>[src]
Encodes the instance to the write stream.
fn decode<S: Read>(stream: &mut S) -> EncodingResult<Self>[src]
Decodes an instance from the read stream.