Struct predicates::str::IsEmptyPredicate[][src]

pub struct IsEmptyPredicate {}

Predicate that checks for empty strings.

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

Trait Implementations

impl Debug for IsEmptyPredicate
[src]

Formats the value using the given formatter. Read more

impl Clone for IsEmptyPredicate
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for IsEmptyPredicate
[src]

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

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

Formats the value using the given formatter. Read more

Auto Trait Implementations