[][src]Struct opcua_server::prelude::ReaderGroupDataType

pub struct ReaderGroupDataType {
    pub name: UAString,
    pub enabled: bool,
    pub security_mode: MessageSecurityMode,
    pub security_group_id: UAString,
    pub security_key_services: Option<Vec<EndpointDescription>>,
    pub max_network_message_size: u32,
    pub group_properties: Option<Vec<KeyValuePair>>,
    pub transport_settings: ExtensionObject,
    pub message_settings: ExtensionObject,
    pub data_set_readers: Option<Vec<DataSetReaderDataType>>,
}

Fields

name: UAStringenabled: boolsecurity_mode: MessageSecurityModesecurity_group_id: UAStringsecurity_key_services: Option<Vec<EndpointDescription>>max_network_message_size: u32group_properties: Option<Vec<KeyValuePair>>transport_settings: ExtensionObjectmessage_settings: ExtensionObjectdata_set_readers: Option<Vec<DataSetReaderDataType>>

Trait Implementations

impl BinaryEncoder<ReaderGroupDataType> for ReaderGroupDataType[src]

impl Clone for ReaderGroupDataType[src]

impl Debug for ReaderGroupDataType[src]

impl PartialEq<ReaderGroupDataType> for ReaderGroupDataType[src]

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