Skip to main content

ExpandedMessageInfo

Trait ExpandedMessageInfo 

Source
pub trait ExpandedMessageInfo {
    // Required methods
    fn full_type_id(&self) -> ExpandedNodeId;
    fn full_json_type_id(&self) -> ExpandedNodeId;
    fn full_xml_type_id(&self) -> ExpandedNodeId;
    fn full_data_type_id(&self) -> ExpandedNodeId;
}
Expand description

Trait implemented by all messages, allowing for custom message types.

Required Methods§

Source

fn full_type_id(&self) -> ExpandedNodeId

The binary type id associated with the message.

Source

fn full_json_type_id(&self) -> ExpandedNodeId

The JSON type id associated with the message.

Source

fn full_xml_type_id(&self) -> ExpandedNodeId

The XML type id associated with the message.

Source

fn full_data_type_id(&self) -> ExpandedNodeId

The data type ID associated with the message.

Implementors§