tokio_childstream/lib.rs
1#![doc = include_str!("../README.md")]
2
3mod commandext;
4mod event;
5mod stream;
6
7pub use self::commandext::CommandExt;
8pub use self::event::{ChildEvent, OutputSource};
9pub use self::stream::ChildStream;
10
11/// The [ChildStream] items yield a [Result] of either a [ChildEvent] or [std::io::Error]
12pub type StreamItem = std::io::Result<ChildEvent>;
13
14#[cfg(test)]
15mod tests;