Struct assert_fs::assert::StrPathPredicate[][src]

pub struct StrPathPredicate<P: Predicate<str>>(_);
Expand description

Keep predicates concrete Predicates out of our public API. predicates_core::Predicate used by IntoPathPredicate for str predicates.

Example

use assert_fs::prelude::*;
use predicates::prelude::*;

let temp = assert_fs::TempDir::new().unwrap();
let input_file = temp.child("foo.txt");
input_file.touch().unwrap();

// ... do something with input_file ...

input_file.assert(predicate::str::is_empty()); // Uses StrPathPredicate

temp.close().unwrap();

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

The type of the predicate being returned.

Convert to a predicate for testing a path.

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

Find a case that proves this predicate as expected when run against variable.

Nested Predicates of the current Predicate.

Parameters of the current Predicate.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type of the predicate being returned.

Convert to a predicate for testing a path.

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

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

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

Returns a BoxPredicate wrapper around this Predicate type. Read more

Name a predicate expression. Read more

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.