Struct UA_SubscriptionDiagnosticsDataType

Source
#[repr(C)]
pub struct UA_SubscriptionDiagnosticsDataType {
Show 31 fields pub sessionId: UA_NodeId, pub subscriptionId: UA_UInt32, pub priority: UA_Byte, pub publishingInterval: UA_Double, pub maxKeepAliveCount: UA_UInt32, pub maxLifetimeCount: UA_UInt32, pub maxNotificationsPerPublish: UA_UInt32, pub publishingEnabled: UA_Boolean, pub modifyCount: UA_UInt32, pub enableCount: UA_UInt32, pub disableCount: UA_UInt32, pub republishRequestCount: UA_UInt32, pub republishMessageRequestCount: UA_UInt32, pub republishMessageCount: UA_UInt32, pub transferRequestCount: UA_UInt32, pub transferredToAltClientCount: UA_UInt32, pub transferredToSameClientCount: UA_UInt32, pub publishRequestCount: UA_UInt32, pub dataChangeNotificationsCount: UA_UInt32, pub eventNotificationsCount: UA_UInt32, pub notificationsCount: UA_UInt32, pub latePublishRequestCount: UA_UInt32, pub currentKeepAliveCount: UA_UInt32, pub currentLifetimeCount: UA_UInt32, pub unacknowledgedMessageCount: UA_UInt32, pub discardedMessageCount: UA_UInt32, pub monitoredItemCount: UA_UInt32, pub disabledMonitoredItemCount: UA_UInt32, pub monitoringQueueOverflowCount: UA_UInt32, pub nextSequenceNumber: UA_UInt32, pub eventQueueOverFlowCount: UA_UInt32,
}

Fields§

§sessionId: UA_NodeId§subscriptionId: UA_UInt32§priority: UA_Byte§publishingInterval: UA_Double§maxKeepAliveCount: UA_UInt32§maxLifetimeCount: UA_UInt32§maxNotificationsPerPublish: UA_UInt32§publishingEnabled: UA_Boolean§modifyCount: UA_UInt32§enableCount: UA_UInt32§disableCount: UA_UInt32§republishRequestCount: UA_UInt32§republishMessageRequestCount: UA_UInt32§republishMessageCount: UA_UInt32§transferRequestCount: UA_UInt32§transferredToAltClientCount: UA_UInt32§transferredToSameClientCount: UA_UInt32§publishRequestCount: UA_UInt32§dataChangeNotificationsCount: UA_UInt32§eventNotificationsCount: UA_UInt32§notificationsCount: UA_UInt32§latePublishRequestCount: UA_UInt32§currentKeepAliveCount: UA_UInt32§currentLifetimeCount: UA_UInt32§unacknowledgedMessageCount: UA_UInt32§discardedMessageCount: UA_UInt32§monitoredItemCount: UA_UInt32§disabledMonitoredItemCount: UA_UInt32§monitoringQueueOverflowCount: UA_UInt32§nextSequenceNumber: UA_UInt32§eventQueueOverFlowCount: UA_UInt32

Trait Implementations§

Source§

impl Default for UA_SubscriptionDiagnosticsDataType

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.