pub trait Validator { type Input; // Required method fn validate( &self, input: &mut Self::Input, config: &ParserConfig, ) -> Result<()>; }