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