Struct predicates::str::DifferencePredicate
source · pub struct DifferencePredicate { /* private fields */ }
Available on crate feature
diff
only.Expand description
Predicate that diffs two strings.
This is created by the predicate::str::diff
.
Trait Implementations§
source§impl Clone for DifferencePredicate
impl Clone for DifferencePredicate
source§fn clone(&self) -> DifferencePredicate
fn clone(&self) -> DifferencePredicate
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 Debug for DifferencePredicate
impl Debug for DifferencePredicate
source§impl Display for DifferencePredicate
impl Display for DifferencePredicate
source§impl PartialEq for DifferencePredicate
impl PartialEq for DifferencePredicate
source§fn eq(&self, other: &DifferencePredicate) -> bool
fn eq(&self, other: &DifferencePredicate) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Predicate<str> for DifferencePredicate
impl Predicate<str> for DifferencePredicate
impl Eq for DifferencePredicate
impl StructuralEq for DifferencePredicate
impl StructuralPartialEq for DifferencePredicate
Auto Trait Implementations§
impl RefUnwindSafe for DifferencePredicate
impl Send for DifferencePredicate
impl Sync for DifferencePredicate
impl Unpin for DifferencePredicate
impl UnwindSafe for DifferencePredicate
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<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, 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>
Available on crate feature
normalize-line-endings
only.Returns a
NormalizedPredicate
that ensures
the newlines within the data passed to Self
is normalised. Read more