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§

source

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]

Filter strings by one or more StringBounds rules

source§

fn filter_all_conditional(&self, pattern_sets: &[StringBounds<'_>]) -> Vec<&str>

source§

impl SimpleFilterAll for [String]

source§

fn filter_all_conditional(&self, pattern_sets: &[StringBounds<'_>]) -> Vec<&str>

Implementors§