diff options
| author | bors <bors@rust-lang.org> | 2014-02-26 10:46:36 -0800 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-02-26 10:46:36 -0800 |
| commit | 5737d1f70459d03b219c8dadb8ac71c26e7e49d8 (patch) | |
| tree | 562a30cae24c58018f3a46b6564b1aa942d1bcda /src/libstd/io/mod.rs | |
| parent | 86177dbbcf65be72c8d2a4c8bc2f5dc84f5ae65c (diff) | |
| parent | 90f2d1d947b5882986e3c2c9e3cda2e959adea0d (diff) | |
| download | rust-5737d1f70459d03b219c8dadb8ac71c26e7e49d8.tar.gz rust-5737d1f70459d03b219c8dadb8ac71c26e7e49d8.zip | |
auto merge of #12490 : zslayton/rust/doc-fix-12386, r=alexcrichton
Attn: @huonw Addresses #12386.
Diffstat (limited to 'src/libstd/io/mod.rs')
| -rw-r--r-- | src/libstd/io/mod.rs | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs index 36d399476d9..4ffab7a5ef8 100644 --- a/src/libstd/io/mod.rs +++ b/src/libstd/io/mod.rs @@ -214,46 +214,32 @@ pub use self::buffered::{BufferedReader, BufferedWriter, BufferedStream, LineBufferedWriter}; pub use self::comm_adapters::{PortReader, ChanWriter}; -/// Various utility functions useful for writing I/O tests pub mod test; -/// Synchronous, non-blocking filesystem operations. pub mod fs; -/// Synchronous, in-memory I/O. pub mod pipe; -/// Child process management. pub mod process; -/// Synchronous, non-blocking network I/O. pub mod net; -/// Readers and Writers for memory buffers and strings. mod mem; -/// Non-blocking access to stdin, stdout, stderr pub mod stdio; -/// Implementations for Result mod result; -/// Extension traits pub mod extensions; -/// Basic Timer pub mod timer; -/// Buffered I/O wrappers mod buffered; -/// Signal handling pub mod signal; -/// Utility implementations of Reader and Writer pub mod util; -/// Adapatation of Chan/Port types to a Writer/Reader type. mod comm_adapters; /// The default buffer size for various I/O operations |
