Stabilized vectored IO

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
This commit is contained in:
Steven Fackler 2019-04-27 08:34:08 -07:00
parent d4a32d504a
commit bd177f3ea3
47 changed files with 278 additions and 278 deletions

View file

@ -135,8 +135,8 @@ fn check(cache: &mut Cache,
file.ends_with("ty/struct.Slice.html") ||
file.ends_with("ty/enum.Attributes.html") ||
file.ends_with("ty/struct.SymbolName.html") ||
file.ends_with("io/struct.IoVec.html") ||
file.ends_with("io/struct.IoVecMut.html") {
file.ends_with("io/struct.IoSlice.html") ||
file.ends_with("io/struct.IoSliceMut.html") {
return None;
}
// FIXME(#32553)