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§
Sourcefn full_type_id(&self) -> ExpandedNodeId
fn full_type_id(&self) -> ExpandedNodeId
The binary type id associated with the message.
Sourcefn full_json_type_id(&self) -> ExpandedNodeId
fn full_json_type_id(&self) -> ExpandedNodeId
The JSON type id associated with the message.
Sourcefn full_xml_type_id(&self) -> ExpandedNodeId
fn full_xml_type_id(&self) -> ExpandedNodeId
The XML type id associated with the message.
Sourcefn full_data_type_id(&self) -> ExpandedNodeId
fn full_data_type_id(&self) -> ExpandedNodeId
The data type ID associated with the message.