tcio 0.1.2

Collection of utility types.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Asynchronous io.
mod read;
mod write;
mod bufread;
mod cursor;

pub use read::AsyncIoRead;
pub use write::AsyncIoWrite;
pub use bufread::{AsyncBufRead, BufReader};
pub use cursor::BufCursor;