Struct predicates::str::MatchesPredicate[][src]

pub struct MatchesPredicate { /* fields omitted */ }

Predicate that checks for repeated patterns.

This is created by predicates::str::contains(...).count.

Trait Implementations

impl Debug for MatchesPredicate
[src]

Formats the value using the given formatter. Read more

impl Clone for MatchesPredicate
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for MatchesPredicate
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for MatchesPredicate
[src]

impl Predicate<str> for MatchesPredicate
[src]

Execute this Predicate against variable, returning the resulting boolean. Read more

Find a case that proves this predicate as expected when run against variable.

impl PredicateReflection for MatchesPredicate
[src]

Important traits for Box<R>

Parameters of the current Predicate.

Important traits for Box<R>

Nested Predicates of the current Predicate.

impl Display for MatchesPredicate
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations