mio-pipe 0.1.1

Crate for using Unix pipes with Mio.
Documentation
1
2
3
4
5
6
7
8
9
//! Platform dependent implementation of the Unix pipe.

#[cfg(unix)]
mod unix;

#[cfg(unix)]
pub use unix::{new_pipe, Receiver, Sender};

// TODO: add Windows implementation.