pub trait Filter<F, V>: Sized {
// Required method
fn select_filtered(filter: F) -> V;
}Expand description
Collection-level filtering for selection options.
Enables filtering Select options based on runtime predicates.
Required Methods§
Sourcefn select_filtered(filter: F) -> V
fn select_filtered(filter: F) -> V
Filter options based on the given predicate.
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.