about summary refs log tree commit diff
path: root/src/libstd/io/util.rs
AgeCommit message (Expand)AuthorLines
2019-11-29Format libstd with rustfmtDavid Tolnay-14/+38
2019-07-19ONCE_INIT is deprecated-in-future only for bootstrapRalf Jung-1/+1
2019-07-19do not use mem::uninitialized in std::ioRalf Jung-14/+10
2019-07-16Remove last use of mem::uninitialized from std::io::utilnathanwhit-4/+9
2019-07-04Permit use of mem::uninitialized via allow(deprecated)Mark Rousskov-0/+1
2019-04-27Stabilized vectored IOSteven Fackler-3/+3
2019-03-31libstd: deny(elided_lifetimes_in_paths)Mazdak Farrokhzad-3/+3
2019-02-28libstd => 2018Taiki Endo-5/+5
2019-02-13impl Deref/DerefMut for IoVec typesSteven Fackler-2/+2
2019-02-13Add vectored read and write supportSteven Fackler-1/+17
2018-12-25Remove licensesMark Rousskov-10/+0
2018-11-06refactor: use shorthand fieldsteresy-1/+1
2018-08-14Cross reference io::copy and fs::copy in docs.Corey Farwell-0/+5
2018-07-11Add missing dyn in testsljedrz-1/+1
2018-03-28Remove hidden `foo` functions from doc examples; use `Termination` trait.Corey Farwell-8/+7
2017-09-23Rollup merge of #44712 - oconnor663:copy_test, r=GuillaumeGomezCorey Farwell-1/+2
2017-09-20fix an incorrect assertion in the doc example for `std::io::copy`Jack O'Connor-1/+2
2017-09-19Add some missing links in io docsGuillaume Gomez-4/+6
2017-06-20Add `Read::initializer`.Steven Fackler-2/+24
2017-03-13Remove function invokation parens from documentation links.Corey Farwell-3/+3
2017-01-29Fix a few impl stability attributesOliver Middleton-3/+3
2017-01-22libstd: replace all `try!` with `?` in documentation examplesUtkarsh Kukreti-1/+1
2016-12-18Implement `fmt::Debug` for all structures in libstd.Corey Farwell-0/+22
2016-08-24Use `#[prelude_import]` in `libstd`.Jeffrey Seyfried-2/+0
2016-07-07Remove unnecessarily mutable reference in doc example.Corey Farwell-2/+2
2016-06-28Rollup merge of #34524 - frewsxcv:std-io-sink, r=GuillaumeGomezGuillaume Gomez-0/+10
2016-06-28Rollup merge of #34518 - frewsxcv:io-repeat, r=GuillaumeGomezGuillaume Gomez-0/+10
2016-06-28Add doc example for `std::io::sink`.Corey Farwell-0/+10
2016-06-27Minor rewrite of `std::io::empty` doc example.Corey Farwell-6/+3
2016-06-27Add doc example for `std::io::repeat`.Corey Farwell-0/+10
2016-03-22try! -> ?Jorge Aparicio-1/+1
2016-03-12std: Clean out deprecated APIsAlex Crichton-27/+0
2015-12-29Fix warnings when compiling stdlib with --testFlorian Hahn-0/+2
2015-08-11Register new snapshotsAlex Crichton-3/+0
2015-08-10Auto merge of #27531 - bluss:io-copy-dst, r=alexcrichtonbors-2/+14
2015-08-10std: Allow ?Sized parameters in std::io::copyUlrik Sverdrup-2/+14
2015-08-03syntax: Implement #![no_core]Alex Crichton-0/+1
2015-07-27fix two linksSteve Klabnik-2/+2
2015-07-20Document structures in std::io::utilsSteve Klabnik-1/+16
2015-07-10Add more std::io documentation.Steve Klabnik-1/+32
2015-06-10Removed many pointless calls to *iter() and iter_mut()Joshua Landau-1/+1
2015-05-20doc: 'reader' and 'writer' are nicer to read than 'r' and 'w'Tshepang Lekhonkhobe-7/+8
2015-04-24Change name of unit test sub-module to "tests".Johannes Oertel-1/+1
2015-03-31Test fixes and rebase conflicts, round 3Alex Crichton-12/+12
2015-03-04std: Stabilize portions of the `io` moduleAlex Crichton-1/+16
2015-02-03std: Add `io` module againAlex Crichton-0/+153
2015-01-26std: Rename io to old_ioAlex Crichton-444/+0
2015-01-21Fallout from stabilization.Aaron Turon-1/+1
2015-01-12cleanup: `&foo[0..a]` -> `&foo[..a]`Jorge Aparicio-3/+3
2015-01-10Implement Show for types in std::io::{buffered,util}Steven Fackler-10/+13