Struct opcua_types::DiagnosticInfo [] [src]

pub struct DiagnosticInfo {
    pub symbolic_id: Option<Int32>,
    pub namespace_uri: Option<Int32>,
    pub locale: Option<Int32>,
    pub localized_text: Option<Int32>,
    pub additional_info: Option<UAString>,
    pub inner_status_code: Option<StatusCode>,
    pub inner_diagnostic_info: Option<Box<DiagnosticInfo>>,
}

Data type ID 25

Fields

A symbolic name for the status code.

A namespace that qualifies the symbolic id.

The locale used for the localized text.

A human readable summary of the status code.

Detailed application specific diagnostic information.

A status code provided by an underlying system.

Diagnostic info associated with the inner status code.

Methods

impl DiagnosticInfo
[src]

Trait Implementations

impl PartialEq for DiagnosticInfo
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for DiagnosticInfo
[src]

Formats the value using the given formatter.

impl Clone for DiagnosticInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl BinaryEncoder<DiagnosticInfo> for DiagnosticInfo
[src]

Returns the byte length of the structure. This calculation should be exact and as efficient as possible. Read more

Encodes the instance to the write stream.

Decodes an instance from the read stream.