pub trait Match<Value = ConValue> {
// Required method
fn matches<'env>(
&self,
value: Value,
in_env: &mut MatchEnv<'env>,
) -> IResult<()>;
}pub trait Match<Value = ConValue> {
// Required method
fn matches<'env>(
&self,
value: Value,
in_env: &mut MatchEnv<'env>,
) -> IResult<()>;
}