[][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.

Implementations

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]

impl Clone for LocalizedText[src]

impl Debug for LocalizedText[src]

impl Default for LocalizedText[src]

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

impl Display for LocalizedText[src]

impl<'_> From<&'_ String> for LocalizedText[src]

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

impl From<LocalizedText> for DataValue[src]

impl From<LocalizedText> for Variant[src]

impl From<String> for LocalizedText[src]

impl PartialEq<LocalizedText> for LocalizedText[src]

impl Serialize for LocalizedText[src]

impl StructuralPartialEq for LocalizedText[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> 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> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,