Move BorrowedBuf and BorrowedCursor from std:io to core::io

Assigned new feature name `core_io_borrowed_buf` to distinguish from the
`Read::read_buf` functionality in `std::io`.
This commit is contained in:
John Millikin
2023-11-08 09:12:01 +09:00
parent 90fdc1fc27
commit 341c85648c
10 changed files with 31 additions and 22 deletions

View File

@@ -369,6 +369,8 @@ pub mod async_iter;
pub mod cell;
pub mod char;
pub mod ffi;
#[unstable(feature = "core_io_borrowed_buf", issue = "117693")]
pub mod io;
pub mod iter;
pub mod net;
pub mod option;