1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Some utility methods for wrapping `std::io::Read` and `std::io::Write`.

mod eof;
mod ignore;
mod many;
mod pos;
mod short;
#[cfg(test)]
mod var_buf;

pub use crate::eof::Eof;
pub use crate::ignore::Ignore;
pub use crate::many::ReadMany;
pub use crate::pos::Pos;
pub use crate::short::ShortRead;
#[cfg(test)]
pub use crate::var_buf::{VarBufRead, VarBufReader};