tastty-driver 0.1.0

Terminal automation driver built on tastty
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(feature = "async")]
pub(crate) mod async_future;
pub(super) mod blocking;
pub(super) mod condition;
pub(super) mod error;
pub(crate) mod exit;
pub(super) mod outcome;
pub(crate) mod output;
pub(super) mod probe;

pub use condition::{DEFAULT_POLL_INTERVAL, RegexCondition, StableCondition, WaitCondition};
pub use error::WaitError;
pub use outcome::{WaitMatch, WaitOutcome};

pub(crate) use blocking::wait;