pub trait StatefulPredicateBooleanOperations<C, S, F>: Fn(Arc<C>, Arc<S>) -> Fwhere
    F: Future<Output = bool> + Send,
    C: Send + Sync + 'static,
    S: Send + Sync + 'static,
    Self: Sized + Send + Sync + 'static,
{ fn and<P, PF>(
        self,
        other: P
    ) -> Box<dyn Fn(Arc<C>, Arc<S>) -> BoxFuture<'static, bool> + Send + Sync + 'static>
    where
        P: StatefulPredicateBooleanOperations<C, S, PF> + 'static,
        PF: Future<Output = bool> + Send
, { ... } fn or<P, PF>(
        self,
        other: P
    ) -> Box<dyn Fn(Arc<C>, Arc<S>) -> BoxFuture<'static, bool> + Send + Sync + 'static>
    where
        P: StatefulPredicateBooleanOperations<C, S, PF> + 'static,
        PF: Future<Output = bool> + Send
, { ... } fn xor<P, PF>(
        self,
        other: P
    ) -> Box<dyn Fn(Arc<C>, Arc<S>) -> BoxFuture<'static, bool> + Send + Sync + 'static>
    where
        P: StatefulPredicateBooleanOperations<C, S, PF> + 'static,
        PF: Future<Output = bool> + Send
, { ... } fn not(
        self
    ) -> Box<dyn Fn(Arc<C>, Arc<S>) -> BoxFuture<'static, bool> + Send + Sync + 'static> { ... } }
Expand description

Boolean operations on stateful predicates.

Provided Methods§

self(..).await && other(..).await

self(..).await || other(..).await

self(..).await != other(..).await

!self(..).await

Implementors§