[][src]Struct opcua_server::prelude::LocalizedText

pub struct LocalizedText {
    pub locale: UAString,
    pub text: UAString,
}

A human readable text with an optional locale identifier.

Fields

locale: UAString

The locale. Omitted from stream if null or empty

text: UAString

The text in the specified locale. Omitted frmo stream if null or empty.

Methods

impl LocalizedText[src]

pub fn new(locale: &str, text: &str) -> LocalizedText[src]

pub fn null() -> LocalizedText[src]

Trait Implementations

impl BinaryEncoder<LocalizedText> for LocalizedText[src]

fn to_vec(&self) -> Vec<u8>[src]

impl Clone for LocalizedText[src]

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

Performs copy-assignment from source. Read more

impl Serialize for LocalizedText[src]

impl Display for LocalizedText[src]

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

impl From<String> for LocalizedText[src]

impl From<LocalizedText> for Variant[src]

impl PartialEq<LocalizedText> for LocalizedText[src]

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

impl Debug for LocalizedText[src]

Auto Trait Implementations

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