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