pub trait FilterImpl: ObjectImpl + ObjectSubclass{
// Provided methods
fn strictness(&self) -> FilterMatch { ... }
fn match_(&self, item: &Object) -> bool { ... }
}
Provided Methods§
fn strictness(&self) -> FilterMatch
fn match_(&self, item: &Object) -> 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.