about summary refs log tree commit diff
path: root/src/libstd/sys/windows/io.rs
AgeCommit message (Collapse)AuthorLines
2019-08-03Add {IoSlice, IoSliceMut}::advanceThomas de Zeeuw-0/+24
2019-07-26add repr(transparent) to IoSliceMut where missingNiv Kaminer-0/+1
2019-04-27Stabilized vectored IOSteven 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-28Fix rebase failTaiki Endo-3/+3
2019-02-13impl Deref/DerefMut for IoVec typesSteven 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-13Add vectored read and write supportSteven Fackler-0/+63
This functionality has lived for a while in the tokio ecosystem, where it can improve performance by minimizing copies.