[][src]Struct opcua_server::prelude::service_types::DataSetMetaDataType

pub struct DataSetMetaDataType {
    pub namespaces: Option<Vec<UAString>>,
    pub structure_data_types: Option<Vec<StructureDescription>>,
    pub enum_data_types: Option<Vec<EnumDescription>>,
    pub simple_data_types: Option<Vec<SimpleTypeDescription>>,
    pub name: UAString,
    pub description: LocalizedText,
    pub fields: Option<Vec<FieldMetaData>>,
    pub data_set_class_id: Guid,
    pub configuration_version: ConfigurationVersionDataType,
}

Fields

namespaces: Option<Vec<UAString>>structure_data_types: Option<Vec<StructureDescription>>enum_data_types: Option<Vec<EnumDescription>>simple_data_types: Option<Vec<SimpleTypeDescription>>name: UAStringdescription: LocalizedTextfields: Option<Vec<FieldMetaData>>data_set_class_id: Guidconfiguration_version: ConfigurationVersionDataType

Trait Implementations

impl BinaryEncoder<DataSetMetaDataType> for DataSetMetaDataType[src]

impl Clone for DataSetMetaDataType[src]

impl Debug for DataSetMetaDataType[src]

impl PartialEq<DataSetMetaDataType> for DataSetMetaDataType[src]

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