read-write-pipe 0.1.0

A trait for objects implementing Write, to write all content from a Read object.
Documentation
1
2
3
4
5
6
7
use read_write_pipe::*;
use std::io;

fn main() -> io::Result<()> {
    let _ = io::stdout().write_reader(io::stdin())?;
    Ok(())
}