five32_instruction_set/
traits.rs

1
2pub trait Named {
3    fn get_name(&self) -> String;
4}
5