Finish docs on futures-mio

Also remove mio BufReader/BufWriter for now, they should come back shortly
though
This commit is contained in:
Alex Crichton
2016-08-01 17:41:58 -07:00
parent 7ffe72dc73
commit 5970203b21
7 changed files with 27 additions and 369 deletions
-8
View File
@@ -19,15 +19,9 @@ extern crate scoped_tls;
#[macro_use]
extern crate log;
use std::io;
use futures::Future;
use futures::stream::Stream;
mod readiness_stream;
mod event_loop;
mod tcp;
mod buf_reader;
mod buf_writer;
#[path = "../../src/slot.rs"]
mod slot;
#[path = "../../src/lock.rs"]
@@ -36,5 +30,3 @@ mod lock;
pub use event_loop::{Loop, LoopHandle};
pub use readiness_stream::ReadinessStream;
pub use tcp::{TcpListener, TcpStream};
pub use buf_reader::{BufReader, InputBuf};
pub use buf_writer::{BufWriter, Flush, Reserve};