tynamed/
lib.rs

1pub trait Named {
2    fn name() -> &'static str;
3}
4
5pub use tynamed_macros::Named;