pub trait Filter<By: ?Sized> {
type Output;
// Required method
fn filter(self, selection: &By) -> Self::Output;
}Expand description
Function for filtering based on a selection mask.
pub trait Filter<By: ?Sized> {
type Output;
// Required method
fn filter(self, selection: &By) -> Self::Output;
}Function for filtering based on a selection mask.