|
|
|
@ -23,34 +23,35 @@
|
|
|
|
|
#[doc(inline)]
|
|
|
|
|
pub use std::io::{Error, ErrorKind, IoSlice, IoSliceMut, Result, SeekFrom};
|
|
|
|
|
|
|
|
|
|
pub use buf_read::{BufRead, BufReadExt, Lines};
|
|
|
|
|
pub use buf_read::{BufRead, Lines};
|
|
|
|
|
pub use buf_reader::BufReader;
|
|
|
|
|
pub use copy::copy;
|
|
|
|
|
pub use cursor::Cursor;
|
|
|
|
|
pub use empty::{empty, Empty};
|
|
|
|
|
pub use read::{Read, ReadExt};
|
|
|
|
|
pub use read::Read;
|
|
|
|
|
pub use repeat::{repeat, Repeat};
|
|
|
|
|
pub use seek::{Seek, SeekExt};
|
|
|
|
|
pub use seek::Seek;
|
|
|
|
|
pub use sink::{sink, Sink};
|
|
|
|
|
pub use stderr::{stderr, Stderr};
|
|
|
|
|
pub use stdin::{stdin, Stdin};
|
|
|
|
|
pub use stdout::{stdout, Stdout};
|
|
|
|
|
pub use timeout::timeout;
|
|
|
|
|
pub use write::{Write, WriteExt};
|
|
|
|
|
pub use write::Write;
|
|
|
|
|
|
|
|
|
|
pub mod prelude;
|
|
|
|
|
|
|
|
|
|
mod buf_read;
|
|
|
|
|
pub(crate) mod buf_read;
|
|
|
|
|
pub(crate) mod read;
|
|
|
|
|
pub(crate) mod seek;
|
|
|
|
|
pub(crate) mod write;
|
|
|
|
|
|
|
|
|
|
mod buf_reader;
|
|
|
|
|
mod copy;
|
|
|
|
|
mod cursor;
|
|
|
|
|
mod empty;
|
|
|
|
|
mod read;
|
|
|
|
|
mod repeat;
|
|
|
|
|
mod seek;
|
|
|
|
|
mod sink;
|
|
|
|
|
mod stderr;
|
|
|
|
|
mod stdin;
|
|
|
|
|
mod stdout;
|
|
|
|
|
mod timeout;
|
|
|
|
|
mod write;
|
|
|
|
|