distant 0.20.0

Operate on a remote computer through file and process manipulation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use ::predicates::prelude::*;

mod predicates;
mod reader;

pub use reader::ThreadedReader;

pub use self::predicates::TrimmedLinesMatchPredicate;

/// Produces a regex predicate using the given string
pub fn regex_pred(s: &str) -> ::predicates::str::RegexPredicate {
    predicate::str::is_match(s).unwrap()
}