sea_schema/
name.rs

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