[][src]Struct opcua_server::prelude::SubscriptionDiagnosticsDataType

pub struct SubscriptionDiagnosticsDataType {
    pub session_id: NodeId,
    pub subscription_id: u32,
    pub priority: u8,
    pub publishing_interval: f64,
    pub max_keep_alive_count: u32,
    pub max_lifetime_count: u32,
    pub max_notifications_per_publish: u32,
    pub publishing_enabled: bool,
    pub modify_count: u32,
    pub enable_count: u32,
    pub disable_count: u32,
    pub republish_request_count: u32,
    pub republish_message_request_count: u32,
    pub republish_message_count: u32,
    pub transfer_request_count: u32,
    pub transferred_to_alt_client_count: u32,
    pub transferred_to_same_client_count: u32,
    pub publish_request_count: u32,
    pub data_change_notifications_count: u32,
    pub event_notifications_count: u32,
    pub notifications_count: u32,
    pub late_publish_request_count: u32,
    pub current_keep_alive_count: u32,
    pub current_lifetime_count: u32,
    pub unacknowledged_message_count: u32,
    pub discarded_message_count: u32,
    pub monitored_item_count: u32,
    pub disabled_monitored_item_count: u32,
    pub monitoring_queue_overflow_count: u32,
    pub next_sequence_number: u32,
    pub event_queue_over_flow_count: u32,
}

Fields

session_id: NodeIdsubscription_id: u32priority: u8publishing_interval: f64max_keep_alive_count: u32max_lifetime_count: u32max_notifications_per_publish: u32publishing_enabled: boolmodify_count: u32enable_count: u32disable_count: u32republish_request_count: u32republish_message_request_count: u32republish_message_count: u32transfer_request_count: u32transferred_to_alt_client_count: u32transferred_to_same_client_count: u32publish_request_count: u32data_change_notifications_count: u32event_notifications_count: u32notifications_count: u32late_publish_request_count: u32current_keep_alive_count: u32current_lifetime_count: u32unacknowledged_message_count: u32discarded_message_count: u32monitored_item_count: u32disabled_monitored_item_count: u32monitoring_queue_overflow_count: u32next_sequence_number: u32event_queue_over_flow_count: u32

Trait Implementations

impl BinaryEncoder<SubscriptionDiagnosticsDataType> for SubscriptionDiagnosticsDataType[src]

impl Clone for SubscriptionDiagnosticsDataType[src]

impl Debug for SubscriptionDiagnosticsDataType[src]

impl MessageInfo for SubscriptionDiagnosticsDataType[src]

impl PartialEq<SubscriptionDiagnosticsDataType> for SubscriptionDiagnosticsDataType[src]

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