[][src]Struct opcua_server::prelude::service_types::ProgramDiagnostic2DataType

pub struct ProgramDiagnostic2DataType {
    pub create_session_id: NodeId,
    pub create_client_name: UAString,
    pub invocation_creation_time: DateTime,
    pub last_transition_time: DateTime,
    pub last_method_call: UAString,
    pub last_method_session_id: NodeId,
    pub last_method_input_arguments: Option<Vec<Argument>>,
    pub last_method_output_arguments: Option<Vec<Argument>>,
    pub last_method_input_values: Option<Vec<Variant>>,
    pub last_method_output_values: Option<Vec<Variant>>,
    pub last_method_call_time: DateTime,
    pub last_method_return_status: StatusResult,
}

Fields

create_session_id: NodeIdcreate_client_name: UAStringinvocation_creation_time: DateTimelast_transition_time: DateTimelast_method_call: UAStringlast_method_session_id: NodeIdlast_method_input_arguments: Option<Vec<Argument>>last_method_output_arguments: Option<Vec<Argument>>last_method_input_values: Option<Vec<Variant>>last_method_output_values: Option<Vec<Variant>>last_method_call_time: DateTimelast_method_return_status: StatusResult

Trait Implementations

impl BinaryEncoder<ProgramDiagnostic2DataType> for ProgramDiagnostic2DataType[src]

impl Clone for ProgramDiagnostic2DataType[src]

impl Debug for ProgramDiagnostic2DataType[src]

impl MessageInfo for ProgramDiagnostic2DataType[src]

impl PartialEq<ProgramDiagnostic2DataType> for ProgramDiagnostic2DataType[src]

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