UA_SessionDiagnosticsDataType

Struct UA_SessionDiagnosticsDataType 

Source
#[repr(C)]
pub struct UA_SessionDiagnosticsDataType {
Show 44 fields pub sessionId: UA_NodeId, pub sessionName: UA_String, pub clientDescription: UA_ApplicationDescription, pub serverUri: UA_String, pub endpointUrl: UA_String, pub localeIdsSize: usize, pub localeIds: *mut UA_String, pub actualSessionTimeout: UA_Double, pub maxResponseMessageSize: UA_UInt32, pub clientConnectionTime: UA_DateTime, pub clientLastContactTime: UA_DateTime, pub currentSubscriptionsCount: UA_UInt32, pub currentMonitoredItemsCount: UA_UInt32, pub currentPublishRequestsInQueue: UA_UInt32, pub totalRequestCount: UA_ServiceCounterDataType, pub unauthorizedRequestCount: UA_UInt32, pub readCount: UA_ServiceCounterDataType, pub historyReadCount: UA_ServiceCounterDataType, pub writeCount: UA_ServiceCounterDataType, pub historyUpdateCount: UA_ServiceCounterDataType, pub callCount: UA_ServiceCounterDataType, pub createMonitoredItemsCount: UA_ServiceCounterDataType, pub modifyMonitoredItemsCount: UA_ServiceCounterDataType, pub setMonitoringModeCount: UA_ServiceCounterDataType, pub setTriggeringCount: UA_ServiceCounterDataType, pub deleteMonitoredItemsCount: UA_ServiceCounterDataType, pub createSubscriptionCount: UA_ServiceCounterDataType, pub modifySubscriptionCount: UA_ServiceCounterDataType, pub setPublishingModeCount: UA_ServiceCounterDataType, pub publishCount: UA_ServiceCounterDataType, pub republishCount: UA_ServiceCounterDataType, pub transferSubscriptionsCount: UA_ServiceCounterDataType, pub deleteSubscriptionsCount: UA_ServiceCounterDataType, pub addNodesCount: UA_ServiceCounterDataType, pub addReferencesCount: UA_ServiceCounterDataType, pub deleteNodesCount: UA_ServiceCounterDataType, pub deleteReferencesCount: UA_ServiceCounterDataType, pub browseCount: UA_ServiceCounterDataType, pub browseNextCount: UA_ServiceCounterDataType, pub translateBrowsePathsToNodeIdsCount: UA_ServiceCounterDataType, pub queryFirstCount: UA_ServiceCounterDataType, pub queryNextCount: UA_ServiceCounterDataType, pub registerNodesCount: UA_ServiceCounterDataType, pub unregisterNodesCount: UA_ServiceCounterDataType,
}

Fields§

§sessionId: UA_NodeId§sessionName: UA_String§clientDescription: UA_ApplicationDescription§serverUri: UA_String§endpointUrl: UA_String§localeIdsSize: usize§localeIds: *mut UA_String§actualSessionTimeout: UA_Double§maxResponseMessageSize: UA_UInt32§clientConnectionTime: UA_DateTime§clientLastContactTime: UA_DateTime§currentSubscriptionsCount: UA_UInt32§currentMonitoredItemsCount: UA_UInt32§currentPublishRequestsInQueue: UA_UInt32§totalRequestCount: UA_ServiceCounterDataType§unauthorizedRequestCount: UA_UInt32§readCount: UA_ServiceCounterDataType§historyReadCount: UA_ServiceCounterDataType§writeCount: UA_ServiceCounterDataType§historyUpdateCount: UA_ServiceCounterDataType§callCount: UA_ServiceCounterDataType§createMonitoredItemsCount: UA_ServiceCounterDataType§modifyMonitoredItemsCount: UA_ServiceCounterDataType§setMonitoringModeCount: UA_ServiceCounterDataType§setTriggeringCount: UA_ServiceCounterDataType§deleteMonitoredItemsCount: UA_ServiceCounterDataType§createSubscriptionCount: UA_ServiceCounterDataType§modifySubscriptionCount: UA_ServiceCounterDataType§setPublishingModeCount: UA_ServiceCounterDataType§publishCount: UA_ServiceCounterDataType§republishCount: UA_ServiceCounterDataType§transferSubscriptionsCount: UA_ServiceCounterDataType§deleteSubscriptionsCount: UA_ServiceCounterDataType§addNodesCount: UA_ServiceCounterDataType§addReferencesCount: UA_ServiceCounterDataType§deleteNodesCount: UA_ServiceCounterDataType§deleteReferencesCount: UA_ServiceCounterDataType§browseCount: UA_ServiceCounterDataType§browseNextCount: UA_ServiceCounterDataType§translateBrowsePathsToNodeIdsCount: UA_ServiceCounterDataType§queryFirstCount: UA_ServiceCounterDataType§queryNextCount: UA_ServiceCounterDataType§registerNodesCount: UA_ServiceCounterDataType§unregisterNodesCount: UA_ServiceCounterDataType

Trait Implementations§

Source§

impl Clone for UA_SessionDiagnosticsDataType

Source§

fn clone(&self) -> UA_SessionDiagnosticsDataType

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for UA_SessionDiagnosticsDataType

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.