Struct predicates::ord::EqPredicate
source · pub struct EqPredicate<T>{ /* private fields */ }
Expand description
Predicate that returns true
if variable
matches the pre-defined Eq
value, otherwise returns false
.
This is created by the predicate::{eq, ne}
functions.
Trait Implementations§
source§impl<T> Clone for EqPredicate<T>
impl<T> Clone for EqPredicate<T>
source§fn clone(&self) -> EqPredicate<T>
fn clone(&self) -> EqPredicate<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> Debug for EqPredicate<T>
impl<T> Debug for EqPredicate<T>
source§impl<T> Display for EqPredicate<T>
impl<T> Display for EqPredicate<T>
source§impl<T> PartialEq for EqPredicate<T>
impl<T> PartialEq for EqPredicate<T>
source§impl<'a, T> Predicate<T> for EqPredicate<&'a T>
impl<'a, T> Predicate<T> for EqPredicate<&'a T>
source§impl<T> Predicate<T> for EqPredicate<T>
impl<T> Predicate<T> for EqPredicate<T>
source§impl<T> PredicateReflection for EqPredicate<T>
impl<T> PredicateReflection for EqPredicate<T>
impl<T> Copy for EqPredicate<T>
impl<T> Eq for EqPredicate<T>
impl<T> StructuralPartialEq for EqPredicate<T>
Auto Trait Implementations§
impl<T> Freeze for EqPredicate<T>where
T: Freeze,
impl<T> RefUnwindSafe for EqPredicate<T>where
T: RefUnwindSafe,
impl<T> Send for EqPredicate<T>where
T: Send,
impl<T> Sync for EqPredicate<T>where
T: Sync,
impl<T> Unpin for EqPredicate<T>where
T: Unpin,
impl<T> UnwindSafe for EqPredicate<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<P, Item> PredicateBooleanExt<Item> for P
impl<P, Item> PredicateBooleanExt<Item> for P
source§fn and<B>(self, other: B) -> AndPredicate<Self, B, Item>
fn and<B>(self, other: B) -> AndPredicate<Self, B, Item>
Compute the logical AND of two
Predicate
results, returning the result. Read moresource§fn or<B>(self, other: B) -> OrPredicate<Self, B, Item>
fn or<B>(self, other: B) -> OrPredicate<Self, B, Item>
Compute the logical OR of two
Predicate
results, returning the result. Read moresource§impl<P, Item> PredicateBoxExt<Item> for Pwhere
P: Predicate<Item>,
impl<P, Item> PredicateBoxExt<Item> for Pwhere
P: Predicate<Item>,
source§impl<P> PredicateFileContentExt for P
impl<P> PredicateFileContentExt for P
source§fn from_file_path(self) -> FileContentPredicate<Self>
fn from_file_path(self) -> FileContentPredicate<Self>
source§impl<P, Item> PredicateNameExt<Item> for P
impl<P, Item> PredicateNameExt<Item> for P
source§impl<P> PredicateStrExt for P
impl<P> PredicateStrExt for P
source§fn trim(self) -> TrimPredicate<Self>
fn trim(self) -> TrimPredicate<Self>
source§fn from_utf8(self) -> Utf8Predicate<Self>
fn from_utf8(self) -> Utf8Predicate<Self>
source§fn normalize(self) -> NormalizedPredicate<Self>
fn normalize(self) -> NormalizedPredicate<Self>
Returns a
NormalizedPredicate
that ensures
the newlines within the data passed to Self
is normalised. Read more