PredicateInner

Trait PredicateInner 

pub trait PredicateInner:
    Clone
    + Eq
    + PartialEq
    + Ord
    + PartialOrd
    + Hash
    + Display
    + Debug {
    // Required methods
    fn not(&self) -> Self;
    fn and(&self, rhs: &Self) -> Self;
    fn or(&self, rhs: &Self) -> Self;
    fn comp(&self, rhs: &Self) -> Self;
    fn is_empty(&self) -> bool;
    fn _ref(self) -> Self;
    fn _deref(&self);
}
Expand description

Inner trait for Predicate.

Required Methods§

fn not(&self) -> Self

fn and(&self, rhs: &Self) -> Self

fn or(&self, rhs: &Self) -> Self

fn comp(&self, rhs: &Self) -> Self

fn is_empty(&self) -> bool

fn _ref(self) -> Self

fn _deref(&self)

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.

Implementors§