Struct predicates::str::MatchesPredicate
source · pub struct MatchesPredicate { /* private fields */ }
Expand description
Predicate that checks for repeated patterns.
This is created by predicates::str::contains(...).count
.
Trait Implementations§
source§impl Clone for MatchesPredicate
impl Clone for MatchesPredicate
source§fn clone(&self) -> MatchesPredicate
fn clone(&self) -> MatchesPredicate
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 MatchesPredicate
impl Debug for MatchesPredicate
source§impl Display for MatchesPredicate
impl Display for MatchesPredicate
source§impl PartialEq<MatchesPredicate> for MatchesPredicate
impl PartialEq<MatchesPredicate> for MatchesPredicate
source§fn eq(&self, other: &MatchesPredicate) -> bool
fn eq(&self, other: &MatchesPredicate) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Predicate<str> for MatchesPredicate
impl Predicate<str> for MatchesPredicate
impl Eq for MatchesPredicate
impl StructuralEq for MatchesPredicate
impl StructuralPartialEq for MatchesPredicate
Auto Trait Implementations§
impl RefUnwindSafe for MatchesPredicate
impl Send for MatchesPredicate
impl Sync for MatchesPredicate
impl Unpin for MatchesPredicate
impl UnwindSafe for MatchesPredicate
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