1
2
3
pub trait Name {
    fn from_str(string: &str) -> Option<Self> where Self: Sized;
}