pub trait MessageInfo {
// Required methods
fn type_id(&self) -> ObjectId;
fn json_type_id(&self) -> ObjectId;
fn xml_type_id(&self) -> ObjectId;
fn data_type_id(&self) -> DataTypeId;
}Expand description
Implemented by messages
Required Methods§
Sourcefn json_type_id(&self) -> ObjectId
fn json_type_id(&self) -> ObjectId
The JSON type id associated with the message.
Sourcefn xml_type_id(&self) -> ObjectId
fn xml_type_id(&self) -> ObjectId
The XML type id associated with the message.
Sourcefn data_type_id(&self) -> DataTypeId
fn data_type_id(&self) -> DataTypeId
The data type id associated with the message.