pub trait Match<Value = ConValue> {
// Required method
fn matches<'env>(
&self,
value: Value,
in_env: &mut MatchEnv<'env>,
) -> IResult<()>;
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".