pub trait IntoFilter {
// Required method
fn into_filter(self) -> Filter;
}Expand description
A type that can be converted into a filter.
Required Methods§
Sourcefn into_filter(self) -> Filter
fn into_filter(self) -> Filter
Convert this type into a filter.