Enum opcua_types::node_id::Identifier
[−]
[src]
pub enum Identifier {
Numeric(UInt32),
String(UAString),
Guid(Guid),
ByteString(ByteString),
}The kind of identifier, numeric, string, guid or byte
Variants
Numeric(UInt32)String(UAString)Guid(Guid)ByteString(ByteString)
Trait Implementations
impl Eq for Identifier[src]
impl PartialEq for Identifier[src]
fn eq(&self, __arg_0: &Identifier) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Identifier) -> bool[src]
This method tests for !=.
impl Clone for Identifier[src]
fn clone(&self) -> Identifier[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 Debug for Identifier[src]
impl Hash for Identifier[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)[src]
Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl From<Int32> for Identifier[src]
impl From<UInt32> for Identifier[src]
impl From<String> for Identifier[src]
impl From<UAString> for Identifier[src]
impl From<Guid> for Identifier[src]
impl From<ByteString> for Identifier[src]
fn from(v: ByteString) -> Self[src]
Performs the conversion.