pub trait Pattern {
// Required method
fn validate_pattern<M: Matcher>(&self, matcher: &M) -> bool;
}Required Methods§
fn validate_pattern<M: Matcher>(&self, matcher: &M) -> bool
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.