pub trait FilterExt:
Filter
+ Sized
+ Clone {
// Provided methods
fn and<F: Filter + Clone>(self, other: F) -> And<Self, F> { ... }
fn or<F: Filter + Clone>(self, other: F) -> Or<Self, F> { ... }
fn not(self) -> Not<Self> { ... }
}Expand description
Provided Methods§
Sourcefn and<F: Filter + Clone>(self, other: F) -> And<Self, F>
fn and<F: Filter + Clone>(self, other: F) -> And<Self, F>
Passes only when both self and other match.
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.