Skip to main content

PredicateCompositionExt

Trait PredicateCompositionExt 

Source
pub trait PredicateCompositionExt {
    // Required methods
    fn and(self, other: Predicate) -> Predicate;
    fn or(self, other: Predicate) -> Predicate;
    fn not(self) -> Predicate;
}

Required Methods§

Source

fn and(self, other: Predicate) -> Predicate

Source

fn or(self, other: Predicate) -> Predicate

Source

fn not(self) -> Predicate

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl PredicateCompositionExt for Predicate

Source§

fn and(self, other: Predicate) -> Predicate

Source§

fn or(self, other: Predicate) -> Predicate

Source§

fn not(self) -> Predicate

Implementors§