Struct predicates::str::NormalizedPredicate
source · pub struct NormalizedPredicate<P>where
P: Predicate<str>,{ /* private fields */ }
Expand description
Predicate adapter that normalizes the newlines contained in the variable being tested.
This is created by pred.normalize()
.
Trait Implementations§
source§impl<P> Clone for NormalizedPredicate<P>where
P: Predicate<str> + Clone,
impl<P> Clone for NormalizedPredicate<P>where P: Predicate<str> + Clone,
source§fn clone(&self) -> NormalizedPredicate<P>
fn clone(&self) -> NormalizedPredicate<P>
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<P> PartialEq<NormalizedPredicate<P>> for NormalizedPredicate<P>where
P: Predicate<str> + PartialEq,
impl<P> PartialEq<NormalizedPredicate<P>> for NormalizedPredicate<P>where P: Predicate<str> + PartialEq,
source§fn eq(&self, other: &NormalizedPredicate<P>) -> bool
fn eq(&self, other: &NormalizedPredicate<P>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<P> PredicateReflection for NormalizedPredicate<P>where
P: Predicate<str>,
impl<P> PredicateReflection for NormalizedPredicate<P>where P: Predicate<str>,
impl<P> Copy for NormalizedPredicate<P>where P: Predicate<str> + Copy,
impl<P> Eq for NormalizedPredicate<P>where P: Predicate<str> + Eq,
impl<P> StructuralEq for NormalizedPredicate<P>where P: Predicate<str>,
impl<P> StructuralPartialEq for NormalizedPredicate<P>where P: Predicate<str>,
Auto Trait Implementations§
impl<P> RefUnwindSafe for NormalizedPredicate<P>where P: RefUnwindSafe,
impl<P> Send for NormalizedPredicate<P>where P: Send,
impl<P> Sync for NormalizedPredicate<P>where P: Sync,
impl<P> Unpin for NormalizedPredicate<P>where P: Unpin,
impl<P> UnwindSafe for NormalizedPredicate<P>where P: 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<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 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 Pwhere
P: Predicate<Item>,
Item: ?Sized,
impl<P, Item> PredicateNameExt<Item> for Pwhere P: Predicate<Item>, Item: ?Sized,
source§impl<P> PredicateStrExt for Pwhere
P: Predicate<str>,
impl<P> PredicateStrExt for Pwhere P: Predicate<str>,
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