[][src]Struct opcua_server::prelude::CreateSubscriptionRequest

pub struct CreateSubscriptionRequest {
    pub request_header: RequestHeader,
    pub requested_publishing_interval: f64,
    pub requested_lifetime_count: u32,
    pub requested_max_keep_alive_count: u32,
    pub max_notifications_per_publish: u32,
    pub publishing_enabled: bool,
    pub priority: u8,
}

Fields

request_header: RequestHeaderrequested_publishing_interval: f64requested_lifetime_count: u32requested_max_keep_alive_count: u32max_notifications_per_publish: u32publishing_enabled: boolpriority: u8

Trait Implementations

impl BinaryEncoder<CreateSubscriptionRequest> for CreateSubscriptionRequest[src]

impl Clone for CreateSubscriptionRequest[src]

impl Debug for CreateSubscriptionRequest[src]

impl Into<SupportedMessage> for CreateSubscriptionRequest[src]

impl MessageInfo for CreateSubscriptionRequest[src]

impl PartialEq<CreateSubscriptionRequest> for CreateSubscriptionRequest[src]

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