mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-29 03:37:26 +03:00
341c85648c
Assigned new feature name `core_io_borrowed_buf` to distinguish from the `Read::read_buf` functionality in `std::io`.
7 lines
213 B
Rust
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};
|