conpty 0.7.0

A library which provides an interface for ConPTY
Documentation
1
2
3
4
5
6
7
8
9
10
//! This module contains [crate::Process]'s `Input` and `Output` pipes.
//!
//! Input - PipeWriter
//! Output - PipeReader

mod reader;
mod writer;

pub use reader::PipeReader;
pub use writer::PipeWriter;