about summary refs log tree commit diff
path: root/src/libstd/sys/cloudabi/io.rs
AgeCommit message (Collapse)AuthorLines
2020-07-27mv std libs to library/mark-47/+0
2020-02-23Implement `Copy` for `IoSlice`LeSeulArtichaut-0/+1
2019-08-03Add {IoSlice, IoSliceMut}::advanceThomas de Zeeuw-0/+14
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-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/+32
This functionality has lived for a while in the tokio ecosystem, where it can improve performance by minimizing copies.