auto merge of #10895 : sfackler/rust/io-util, r=alexcrichton
This adds a bunch of useful Reader and Writer implementations. I'm not a huge fan of the name `util` but I can't think of a better name and I don't want to make `std::io` any longer than it already is.
This commit is contained in:
commit
2ec4712289
2 changed files with 298 additions and 0 deletions
|
@ -335,6 +335,9 @@ pub mod native;
|
|||
/// Signal handling
|
||||
pub mod signal;
|
||||
|
||||
/// Utility implementations of Reader and Writer
|
||||
pub mod util;
|
||||
|
||||
/// The default buffer size for various I/O operations
|
||||
static DEFAULT_BUF_SIZE: uint = 1024 * 64;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue