1
2
3
4
5
pub trait ToStr {

    fn to_str(self)
        -> &'static str;
}