pub trait Identifier: Display {
    fn acronym(&self) -> &'static str;
fn value(&self) -> &str; }

Required methods

Implementors