[][src]Struct opcua_server::prelude::UABinaryFileDataType

pub struct UABinaryFileDataType {
    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 schema_location: UAString,
    pub file_header: Option<Vec<KeyValuePair>>,
    pub body: Variant,
}

Fields

namespaces: Option<Vec<UAString>>structure_data_types: Option<Vec<StructureDescription>>enum_data_types: Option<Vec<EnumDescription>>simple_data_types: Option<Vec<SimpleTypeDescription>>schema_location: UAStringfile_header: Option<Vec<KeyValuePair>>body: Variant

Trait Implementations

impl BinaryEncoder<UABinaryFileDataType> for UABinaryFileDataType[src]

impl Clone for UABinaryFileDataType[src]

impl Debug for UABinaryFileDataType[src]

impl PartialEq<UABinaryFileDataType> for UABinaryFileDataType[src]

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