pub trait SimpleFilterAll {
// Required method
fn filter_all_conditional(
&self,
pattern_sets: &[StringBounds<'_>]
) -> Vec<&str>;
}
Expand description
Test multiple patterns and return a filtered vector of string slices
Required Methods§
sourcefn filter_all_conditional(&self, pattern_sets: &[StringBounds<'_>]) -> Vec<&str>
fn filter_all_conditional(&self, pattern_sets: &[StringBounds<'_>]) -> Vec<&str>
test for multiple conditions. All other trait methods are derived from this
Implementations on Foreign Types§
source§impl SimpleFilterAll for [&str]
impl SimpleFilterAll for [&str]
Filter strings by one or more StringBounds rules