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]

[src]

Formats the value using the given formatter. Read more

impl Predicate<Path> for ExistencePredicate
[src]

[src]

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

[src]

Compute the logical AND of two Predicate results, returning the result. Read more

[src]

Compute the logical OR of two Predicate results, returning the result. Read more

[src]

Compute the logical NOT of a Predicate, returning the result. Read more

[src]

Returns a BoxPredicate wrapper around this Predicate type. Read more

Auto Trait Implementations