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;