pub trait StrParser { // Required method fn parse_str(&mut self, source: impl AsRef<str>) -> Vec<Token>; }