Struct predicates::str::EndsWithPredicate[][src]

pub struct EndsWithPredicate { /* fields omitted */ }

Predicate checks end of str

This is created by predicates::str::ends_with.

Trait Implementations

impl Debug for EndsWithPredicate
[src]

Formats the value using the given formatter. Read more

impl Clone for EndsWithPredicate
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for EndsWithPredicate
[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 EndsWithPredicate
[src]

impl Predicate<str> for EndsWithPredicate
[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 EndsWithPredicate
[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 EndsWithPredicate
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations