Trait predicates::Predicate

source ·
pub trait Predicate<Item>: PredicateReflectionwhere
    Item: ?Sized,{
    // Required method
    fn eval(&self, variable: &Item) -> bool;

    // Provided method
    fn find_case<'a>(
        &'a self,
        expected: bool,
        variable: &Item
    ) -> Option<Case<'a>> { ... }
}
Expand description

Trait for generically evaluating a type against a dynamically created predicate function.

The exact meaning of eval depends on the situation, but will usually mean that the evaluated item is in some sort of pre-defined set. This is different from Ord and Eq in that an item will almost never be the same type as the implementing Predicate type.

Required Methods§

source

fn eval(&self, variable: &Item) -> bool

Execute this Predicate against variable, returning the resulting boolean.

Provided Methods§

source

fn find_case<'a>(&'a self, expected: bool, variable: &Item) -> Option<Case<'a>>

Find a case that proves this predicate as expected when run against variable.

Implementors§

source§

impl Predicate<f64> for IsClosePredicate

source§

impl Predicate<str> for StrFilePredicate

source§

impl Predicate<str> for ContainsPredicate

source§

impl Predicate<str> for DifferencePredicate

source§

impl Predicate<str> for EndsWithPredicate

source§

impl Predicate<str> for IsEmptyPredicate

source§

impl Predicate<str> for MatchesPredicate

source§

impl Predicate<str> for RegexPredicate

source§

impl Predicate<str> for StartsWithPredicate

source§

impl Predicate<Path> for BinaryFilePredicate

source§

impl Predicate<Path> for ExistencePredicate

source§

impl Predicate<Path> for FileTypePredicate

source§

impl Predicate<Path> for StrFilePredicate

source§

impl Predicate<[u8]> for BinaryFilePredicate

source§

impl<F, T> Predicate<T> for FnPredicate<F, T>where F: Fn(&T) -> bool, T: ?Sized,

source§

impl<Item> Predicate<Item> for BoxPredicate<Item>where Item: ?Sized,

source§

impl<Item: ?Sized> Predicate<Item> for BooleanPredicate

source§

impl<M1, M2, Item> Predicate<Item> for AndPredicate<M1, M2, Item>where M1: Predicate<Item>, M2: Predicate<Item>, Item: ?Sized,

source§

impl<M1, M2, Item> Predicate<Item> for OrPredicate<M1, M2, Item>where M1: Predicate<Item>, M2: Predicate<Item>, Item: ?Sized,

source§

impl<M, Item> Predicate<Item> for NotPredicate<M, Item>where M: Predicate<Item>, Item: ?Sized,

source§

impl<M, Item> Predicate<Item> for NamePredicate<M, Item>where M: Predicate<Item>, Item: ?Sized,

source§

impl<P> Predicate<str> for NormalizedPredicate<P>where P: Predicate<str>,

source§

impl<P> Predicate<str> for TrimPredicate<P>where P: Predicate<str>,

source§

impl<P> Predicate<OsStr> for Utf8Predicate<P>where P: Predicate<str>,

source§

impl<P> Predicate<Path> for FileContentPredicate<P>where P: Predicate<[u8]>,

source§

impl<P> Predicate<[u8]> for Utf8Predicate<P>where P: Predicate<str>,

source§

impl<P, T> Predicate<P> for HashableInPredicate<T>where T: Borrow<P> + Hash + Eq + Debug, P: Hash + Eq + Debug + ?Sized,

source§

impl<P, T> Predicate<P> for InPredicate<T>where T: Borrow<P> + PartialEq + Debug, P: PartialEq + Debug + ?Sized,

source§

impl<P, T> Predicate<P> for OrdInPredicate<T>where T: Borrow<P> + Ord + Debug, P: Ord + Debug + ?Sized,

source§

impl<P, T> Predicate<P> for EqPredicate<T>where T: Borrow<P> + Debug, P: Debug + PartialEq + ?Sized,

source§

impl<P, T> Predicate<P> for OrdPredicate<T>where T: Borrow<P> + Debug, P: Debug + PartialOrd + ?Sized,