Struct predicates::iter::HashableInPredicate
source · Expand description
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§
source§impl<T> Clone for HashableInPredicate<T>where
T: Hash + Eq + Debug + Clone,
impl<T> Clone for HashableInPredicate<T>where
T: Hash + Eq + Debug + Clone,
source§fn clone(&self) -> HashableInPredicate<T>
fn clone(&self) -> HashableInPredicate<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T> PartialEq<HashableInPredicate<T>> for HashableInPredicate<T>where
T: Hash + Eq + Debug + PartialEq,
impl<T> PartialEq<HashableInPredicate<T>> for HashableInPredicate<T>where
T: Hash + Eq + Debug + PartialEq,
source§fn eq(&self, other: &HashableInPredicate<T>) -> bool
fn eq(&self, other: &HashableInPredicate<T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<P, T> Predicate<P> for HashableInPredicate<T>where
T: Borrow<P> + Hash + Eq + Debug,
P: Hash + Eq + Debug + ?Sized,
impl<P, T> Predicate<P> for HashableInPredicate<T>where
T: Borrow<P> + Hash + Eq + Debug,
P: Hash + Eq + Debug + ?Sized,
source§impl<T> PredicateReflection for HashableInPredicate<T>where
T: Hash + Eq + Debug,
impl<T> PredicateReflection for HashableInPredicate<T>where
T: Hash + Eq + Debug,
impl<T> Eq for HashableInPredicate<T>where
T: Hash + Eq + Debug + Eq,
impl<T> StructuralEq for HashableInPredicate<T>where
T: Hash + Eq + Debug,
impl<T> StructuralPartialEq for HashableInPredicate<T>where
T: Hash + Eq + Debug,
Auto Trait Implementations§
impl<T> RefUnwindSafe for HashableInPredicate<T>where
T: RefUnwindSafe,
impl<T> Send for HashableInPredicate<T>where
T: Send,
impl<T> Sync for HashableInPredicate<T>where
T: Sync,
impl<T> Unpin for HashableInPredicate<T>where
T: Unpin,
impl<T> UnwindSafe for HashableInPredicate<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<P, Item> PredicateBooleanExt<Item> for Pwhere
P: Predicate<Item>,
Item: ?Sized,
impl<P, Item> PredicateBooleanExt<Item> for Pwhere
P: Predicate<Item>,
Item: ?Sized,
source§fn and<B>(self, other: B) -> AndPredicate<Self, B, Item>where
B: Predicate<Item>,
Self: Sized,
fn and<B>(self, other: B) -> AndPredicate<Self, B, Item>where
B: Predicate<Item>,
Self: Sized,
Compute the logical AND of two
Predicate
results, returning the result. Read more