pub trait Parser { // Required method fn custom_parse(input: &str) -> Result<Self> where Self: Sized; }