Struct predicates::str::ContainsPredicate
source · pub struct ContainsPredicate { /* private fields */ }
Expand description
Predicate that checks for patterns.
This is created by predicates::str:contains
.
Implementations§
source§impl ContainsPredicate
impl ContainsPredicate
sourcepub fn count(self, count: usize) -> MatchesPredicate
pub fn count(self, count: usize) -> MatchesPredicate
Require a specific count of matches.
Examples
use predicates::prelude::*;
let predicate_fn = predicate::str::contains("Two").count(2);
assert_eq!(true, predicate_fn.eval("One Two Three Two One"));
assert_eq!(false, predicate_fn.eval("One Two Three"));
Trait Implementations§
source§impl Clone for ContainsPredicate
impl Clone for ContainsPredicate
source§fn clone(&self) -> ContainsPredicate
fn clone(&self) -> ContainsPredicate
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 ContainsPredicate
impl Debug for ContainsPredicate
source§impl Display for ContainsPredicate
impl Display for ContainsPredicate
source§impl PartialEq<ContainsPredicate> for ContainsPredicate
impl PartialEq<ContainsPredicate> for ContainsPredicate
source§fn eq(&self, other: &ContainsPredicate) -> bool
fn eq(&self, other: &ContainsPredicate) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Predicate<str> for ContainsPredicate
impl Predicate<str> for ContainsPredicate
impl Eq for ContainsPredicate
impl StructuralEq for ContainsPredicate
impl StructuralPartialEq for ContainsPredicate
Auto Trait Implementations§
impl RefUnwindSafe for ContainsPredicate
impl Send for ContainsPredicate
impl Sync for ContainsPredicate
impl Unpin for ContainsPredicate
impl UnwindSafe for ContainsPredicate
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