pub trait Global<CTX>{
// Required methods
fn id(&self) -> CTX::MID;
fn inner_name(&self) -> String;
}Expand description
The global message type.
Required Methods§
fn id(&self) -> CTX::MID
Sourcefn inner_name(&self) -> String
fn inner_name(&self) -> String
Get the message name of the inner message type
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.