Describable

Trait Describable 

Source
pub trait Describable {
    // Required method
    fn describe<PG: ParameterGatherer>(&self, pg: PG, ver: Version) -> PG;
}
Expand description

Interface implementing generic description of M8 structures for human consumption.

Required Methods§

Source

fn describe<PG: ParameterGatherer>(&self, pg: PG, ver: Version) -> PG

Method called to describte the content of the structure in any gatherer.

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.

Implementors§