Struct predicates::str::StartsWithPredicate[][src]

pub struct StartsWithPredicate { /* fields omitted */ }

Predicate checks start of str

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

Trait Implementations

impl Debug for StartsWithPredicate
[src]

Formats the value using the given formatter. Read more

impl Clone for StartsWithPredicate
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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

Formats the value using the given formatter. Read more

Auto Trait Implementations