Struct predicates::path::ExistencePredicate[][src]

pub struct ExistencePredicate { /* fields omitted */ }

Predicate that checks if a file is present

This is created by the predicate::path::exists and predicate::path::missing.

Trait Implementations

impl Debug for ExistencePredicate
[src]

Formats the value using the given formatter. Read more

impl Clone for ExistencePredicate
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ExistencePredicate
[src]

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

impl Predicate<Path> for ExistencePredicate
[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 ExistencePredicate
[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 ExistencePredicate
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations