rust-expect 0.1.0

Next-generation Expect-style terminal automation library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! Send module for writing data to sessions.
//!
//! This module provides functionality for sending data to spawned processes,
//! including basic send operations, ANSI escape sequences, and human-like typing.

mod basic;
mod human;

pub use basic::{AnsiSend, AnsiSequences, BasicSend, Sender};
pub use human::{HumanSend, HumanTyper, TypeEvent, TypingSpeed};