pub trait CompiledRegex: Send + Sync {
// Required method
fn find_matches(&self, text: &str) -> EngineResult<Vec<Match>>;
}Required Methods§
fn find_matches(&self, text: &str) -> EngineResult<Vec<Match>>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".