| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-07-27 | mv std libs to library/ | mark | -47/+0 | |
| 2020-02-23 | Implement `Copy` for `IoSlice` | LeSeulArtichaut | -0/+1 | |
| 2019-08-03 | Add {IoSlice, IoSliceMut}::advance | Thomas de Zeeuw | -0/+14 | |
| 2019-04-27 | Stabilized vectored IO | Steven Fackler | -8/+8 | |
| This renames `std::io::IoVec` to `std::io::IoSlice` and `std::io::IoVecMut` to `std::io::IoSliceMut`, and stabilizes `std::io::IoSlice`, `std::io::IoSliceMut`, `std::io::Read::read_vectored`, and `std::io::Write::write_vectored`. Closes #58452 | ||||
| 2019-02-13 | impl Deref/DerefMut for IoVec types | Steven Fackler | -3/+3 | |
| Returning &'a mut [u8] was unsound, and we may as well just have them directly deref to their slices to make it easier to work with them. | ||||
| 2019-02-13 | Add vectored read and write support | Steven Fackler | -0/+32 | |
| This functionality has lived for a while in the tokio ecosystem, where it can improve performance by minimizing copies. | ||||
