pub trait EnumInfo: Into<&'static str> {
    fn as_name(&self) -> &'static str;
    fn as_docs(&self) -> &'static [&'static str];

    fn as_short_doc(&self) -> &'static str { ... }
}

Required Methods

Provided Methods

Implementors