pub trait PredicateCompositionExt {
// Required methods
fn and(self, other: Predicate) -> Predicate;
fn or(self, other: Predicate) -> Predicate;
fn not(self) -> Predicate;
}Required Methods§
fn and(self, other: Predicate) -> Predicate
fn or(self, other: Predicate) -> Predicate
fn not(self) -> Predicate
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".