pub trait HasName {
    fn name(&self) -> &str;
fn type_name(&self) -> &str; }

Required methods

Implementors