pub trait LanguageParser {
// Required method
fn parse<'a>(
&self,
input: &'a str,
) -> Result<TimeExpression, ParseError<&'a str, ContextError>>;
}pub trait LanguageParser {
// Required method
fn parse<'a>(
&self,
input: &'a str,
) -> Result<TimeExpression, ParseError<&'a str, ContextError>>;
}