1 2 3 4 5 6 7 8 9 10 11 12 13 14
pub trait Printable { fn to_string() -> &'static str; fn to_possible_strings() -> &'static [&'static str]; } impl Printable for usize { fn to_string() -> &'static str { "usize" } fn to_possible_strings() -> &'static [&'static str] { &["usize"] } }