pub trait Described<M: Default = HashMap<&'static str, &'static str>> {
// Required method
fn metadata() -> Descriptor<M>;
}Expand description
A self description of the type being targeted including doc-strings and metadata annotations.
Required Methods§
Sourcefn metadata() -> Descriptor<M>
fn metadata() -> Descriptor<M>
Get self description of this 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.