Struct predicates::iter::HashableInPredicate[][src]

pub struct HashableInPredicate<T> where
    T: Hash + Eq + Debug
{ /* fields omitted */ }

Predicate that returns true if variable is a member of the pre-defined HashSet, otherwise returns false.

Note that this implementation requires Item to be Hash + Eq. The InPredicate uses a less efficient search algorithm but only requires Item implement PartialEq. The implementation-specific predicates will be deprecated when Rust supports trait specialization.

This is created by the predicate::in_hash function.

Trait Implementations

impl<T: Debug> Debug for HashableInPredicate<T> where
    T: Hash + Eq + Debug
[src]

Formats the value using the given formatter. Read more

impl<T: Clone> Clone for HashableInPredicate<T> where
    T: Hash + Eq + Debug
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: PartialEq> PartialEq for HashableInPredicate<T> where
    T: Hash + Eq + Debug
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<T: Eq> Eq for HashableInPredicate<T> where
    T: Hash + Eq + Debug
[src]

impl<T> Predicate<T> for HashableInPredicate<T> where
    T: Hash + Eq + Debug
[src]

Execute this Predicate against variable, returning the resulting boolean. Read more

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

impl<'a, T: ?Sized> Predicate<T> for HashableInPredicate<&'a T> where
    T: Hash + Eq + Debug
[src]

Execute this Predicate against variable, returning the resulting boolean. Read more

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

impl<T> PredicateReflection for HashableInPredicate<T> where
    T: Hash + Eq + Debug
[src]

Important traits for Box<R>

Parameters of the current Predicate.

Important traits for Box<R>

Nested Predicates of the current Predicate.

impl<T> Display for HashableInPredicate<T> where
    T: Hash + Eq + Debug
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<T> Send for HashableInPredicate<T> where
    T: Send

impl<T> Sync for HashableInPredicate<T> where
    T: Sync