saffron_data/
parse.rs

1pub trait Parse {
2    fn parse(source: impl Into<String>) -> Result<Self, crate::error::ParseError>
3    where
4        Self: Sized;
5}