[][src]Struct opcua_server::prelude::FieldMetaData

pub struct FieldMetaData {
    pub name: UAString,
    pub description: LocalizedText,
    pub field_flags: DataSetFieldFlags,
    pub built_in_type: u8,
    pub data_type: NodeId,
    pub value_rank: i32,
    pub array_dimensions: Option<Vec<u32>>,
    pub max_string_length: u32,
    pub data_set_field_id: Guid,
    pub properties: Option<Vec<KeyValuePair>>,
}

Fields

name: UAStringdescription: LocalizedTextfield_flags: DataSetFieldFlagsbuilt_in_type: u8data_type: NodeIdvalue_rank: i32array_dimensions: Option<Vec<u32>>max_string_length: u32data_set_field_id: Guidproperties: Option<Vec<KeyValuePair>>

Trait Implementations

impl BinaryEncoder<FieldMetaData> for FieldMetaData[src]

impl Clone for FieldMetaData[src]

impl Debug for FieldMetaData[src]

impl MessageInfo for FieldMetaData[src]

impl PartialEq<FieldMetaData> for FieldMetaData[src]

impl StructuralPartialEq for FieldMetaData[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> 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, 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>,