pub trait GetName {
    // Required method
    fn get_name(&self) -> &'static str;
}

Required Methods§

source

fn get_name(&self) -> &'static str

Implementors§