buffered_io/asynch/
mod.rs

1mod read;
2mod write;
3
4pub use read::BufferedRead;
5pub use write::BufferedWrite;
6
7/// Unable to bypass the current buffered reader or writer because there are buffered bytes.
8#[derive(Debug)]
9pub struct BypassError;