Files
rust/library/core/src/io/mod.rs
T
John Millikin 341c85648c 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`.
2023-11-09 07:10:11 +09:00

7 lines
213 B
Rust

//! Traits, helpers, and type definitions for core I/O functionality.
mod borrowed_buf;
#[unstable(feature = "core_io_borrowed_buf", issue = "117693")]
pub use self::borrowed_buf::{BorrowedBuf, BorrowedCursor};