[][src]Enum opcua_server::prelude::node_id::Identifier

pub enum Identifier {
    Numeric(u32),
    String(UAString),
    Guid(Guid),
    ByteString(ByteString),
}

The kind of identifier, numeric, string, guid or byte

Variants

Numeric(u32)String(UAString)Guid(Guid)ByteString(ByteString)

Trait Implementations

impl Clone for Identifier[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for Identifier[src]

impl Serialize for Identifier[src]

impl Display for Identifier[src]

impl Hash for Identifier[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

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

impl From<Guid> for Identifier[src]

impl From<i32> for Identifier[src]

impl From<u32> for Identifier[src]

impl From<String> for Identifier[src]

impl<'a> From<&'a str> for Identifier[src]

impl From<ByteString> for Identifier[src]

impl From<UAString> for Identifier[src]

impl PartialEq<Identifier> for Identifier[src]

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

impl Debug for Identifier[src]

Auto Trait Implementations

impl Send for Identifier

impl Sync for Identifier

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T