| Age | Commit message (Expand) | Author | Lines |
| 2020-05-09 | Better documentation for io::Read::read() return value | Elinvynia | -0/+5 |
| 2020-04-29 | Rollup merge of #71296 - ChiefMilesEdgeworth:fix_doc_wording, r=Dylan-DPC | Dylan DPC | -2/+3 |
| 2020-04-26 | Suppress file length check temporarily | Steven Fackler | -0/+1 |
| 2020-04-26 | Update name | Steven Fackler | -4/+4 |
| 2020-04-26 | Add Read/Write::can_read/write_vectored | Steven Fackler | -0/+26 |
| 2020-04-18 | Change wording on read_vectored docs | Nathan Abel | -2/+3 |
| 2020-04-07 | Put reference to write_vectored in quotes in doc | Thomas de Zeeuw | -1/+1 |
| 2020-04-06 | Improve io::Write::write_all_vectored docs | Thomas de Zeeuw | -11/+17 |
| 2020-04-01 | Fix link to write_vectored | Thomas de Zeeuw | -1/+1 |
| 2020-04-01 | Use unspecified over undefined in io::Write::write_all_vectored docs | Thomas de Zeeuw | -7/+9 |
| 2020-03-31 | Add io::Write::write_all_vectored | Thomas de Zeeuw | -1/+161 |
| 2020-03-24 | spaces between braces really ruin readability | Without Boats | -4/+4 |
| 2020-03-24 | correct rustc version | Without Boats | -2/+2 |
| 2020-03-24 | IoSlice/IoSliceMut should be Send and Sync | Without Boats | -0/+12 |
| 2020-03-21 | Tweak wording for std::io::Read::read function | adrian5 | -1/+1 |
| 2020-03-14 | Rollup merge of #69403 - LeSeulArtichaut:copy-ioslice, r=sfackler | Yuki Okushi | -0/+1 |
| 2020-03-10 | Rollup merge of #69514 - GuillaumeGomez:remove-spotlight, r=kinnison | Mazdak Farrokhzad | -2/+0 |
| 2020-03-06 | Don't redundantly repeat field names (clippy::redundant_field_names) | Matthias Krüger | -2/+2 |
| 2020-02-27 | use char instead of &str for single char patterns | Matthias Krüger | -2/+2 |
| 2020-02-27 | Remove spotlight usage | Guillaume Gomez | -2/+0 |
| 2020-02-23 | Implement `Copy` for `IoSlice` | LeSeulArtichaut | -0/+1 |
| 2020-01-28 | Document that write_all will not call write if given an empty buffer | Josh Triplett | -0/+2 |
| 2019-12-22 | Format the world | Mark Rousskov | -2/+1 |
| 2019-12-21 | Require issue = "none" over issue = "0" in unstable attributes | Ross MacArthur | -1/+1 |
| 2019-12-05 | Simplify {IoSlice, IoSliceMut}::advance examples and tests | Tomasz Miąsko | -29/+26 |
| 2019-11-29 | Format libstd with rustfmt | David Tolnay | -79/+89 |
| 2019-09-16 | Fix inconsistent link formatting | Ivan Tham | -6/+6 |
| 2019-09-03 | Changed comment to better reflect std's exceptional situation | Daniel Henry-Mantilla | -4/+4 |
| 2019-09-03 | Added warning around code with reference to uninit bytes | Daniel Henry-Mantilla | -0/+8 |
| 2019-08-06 | avoid unnecessary reservations in std::io::Take::read_to_end | Jack O'Connor | -8/+58 |
| 2019-08-03 | Add {IoSlice, IoSliceMut}::advance | Thomas de Zeeuw | -1/+199 |
| 2019-08-01 | Rollup merge of #62644 - arnottcr:std_io-doc, r=steveklabnik | Pietro Albini | -1/+1 |
| 2019-07-28 | Rollup merge of #62806 - mati865:clippy, r=TimNN | Mazdak Farrokhzad | -2/+2 |
| 2019-07-21 | read: fix doc comment | Ralf Jung | -2/+2 |
| 2019-07-18 | Fix clippy::len_zero warnings | Mateusz Mikuła | -2/+2 |
| 2019-07-13 | simplify std::io::Write::write rustdoc | Colin Arnott | -1/+1 |
| 2019-07-04 | Fix a typo in Write::write_vectored docs | Paweł Romanowski | -1/+1 |
| 2019-06-25 | tweak wording | Ralf Jung | -3/+3 |
| 2019-06-24 | call out explicitly that general read needs to be called with an initialized ... | Ralf Jung | -1/+10 |
| 2019-05-18 | Simplify BufRead doc example using NLL | Brent Kerby | -9/+4 |
| 2019-04-27 | Stabilized vectored IO | Steven Fackler | -31/+31 |
| 2019-03-31 | libstd: deny(elided_lifetimes_in_paths) | Mazdak Farrokhzad | -4/+4 |
| 2019-03-29 | In doc examples, don't ignore read/write results | Matt Brubeck | -6/+19 |
| 2019-03-28 | Use write_all instead of write in example code | Matt Brubeck | -1/+1 |
| 2019-03-22 | Add tracking issue number for `seek_convenience` | Lukas Kalbertodt | -2/+2 |
| 2019-03-21 | Auto merge of #58422 - LukasKalbertodt:seek-convenience, r=alexcrichton | bors | -2/+126 |
| 2019-03-17 | Apply suggestions from code review
| Tobias Bucher | -2/+2 |
| 2019-03-14 | Change "undefined" to "unspecified" in `Seek::stream_len` docs | Lukas Kalbertodt | -1/+1 |
| 2019-03-14 | Avoid third seek operation in `Seek::stream_len` when possible | Lukas Kalbertodt | -5/+12 |
| 2019-03-10 | Add provided methods `Seek::{stream_len, stream_position}` | Lukas Kalbertodt | -2/+119 |