[][src]Struct opcua_server::prelude::EndpointConfiguration

pub struct EndpointConfiguration {
    pub operation_timeout: i32,
    pub use_binary_encoding: bool,
    pub max_string_length: i32,
    pub max_byte_string_length: i32,
    pub max_array_length: i32,
    pub max_message_size: i32,
    pub max_buffer_size: i32,
    pub channel_lifetime: i32,
    pub security_token_lifetime: i32,
}

Fields

operation_timeout: i32use_binary_encoding: boolmax_string_length: i32max_byte_string_length: i32max_array_length: i32max_message_size: i32max_buffer_size: i32channel_lifetime: i32security_token_lifetime: i32

Trait Implementations

impl BinaryEncoder<EndpointConfiguration> for EndpointConfiguration[src]

impl Clone for EndpointConfiguration[src]

impl Debug for EndpointConfiguration[src]

impl MessageInfo for EndpointConfiguration[src]

impl PartialEq<EndpointConfiguration> for EndpointConfiguration[src]

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