-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Tracking Issue for read_buf_at
#140771
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
A-io
Area: `std::io`, `std::fs`, `std::net` and `std::path`
C-tracking-issue
Category: An issue tracking the progress of sth. like the implementation of an RFC
S-tracking-unimplemented
Status: The feature has not been implemented.
T-libs-api
Relevant to the library API team, which will review and decide on the PR/issue.
Comments
This comment has been minimized.
This comment has been minimized.
niklasf
added a commit
to niklasf/rust
that referenced
this issue
May 12, 2025
Adds the following items under the `read_buf_at` (rust-lang#140771) feature: - `std::os::unix::FileExt::read_buf_at` - `std::os::unix::FileExt::read_buf_exact_at` - `std::os::windows::FileExt::seek_read_buf`
niklasf
added a commit
to niklasf/rust
that referenced
this issue
May 12, 2025
Adds the following items under the `read_buf_at` (rust-lang#140771) feature: - `std::os::unix::FileExt::read_buf_at` - `std::os::unix::FileExt::read_buf_exact_at` - `std::os::windows::FileExt::seek_read_buf`
niklasf
added a commit
to niklasf/rust
that referenced
this issue
May 12, 2025
Adds the following items under the `read_buf_at` (rust-lang#140771) feature: - `std::os::unix::FileExt::read_buf_at` - `std::os::unix::FileExt::read_buf_exact_at` - `std::os::windows::FileExt::seek_read_buf`
niklasf
added a commit
to niklasf/rust
that referenced
this issue
May 12, 2025
Adds the following items under the `read_buf_at` (rust-lang#140771) feature: - `std::os::unix::FileExt::read_buf_at` - `std::os::unix::FileExt::read_buf_exact_at` - `std::os::windows::FileExt::seek_read_buf`
niklasf
added a commit
to niklasf/rust
that referenced
this issue
May 12, 2025
Adds the following items under the `read_buf_at` (rust-lang#140771) feature: - `std::os::unix::FileExt::read_buf_at` - `std::os::unix::FileExt::read_buf_exact_at` - `std::os::windows::FileExt::seek_read_buf`
bors
added a commit
that referenced
this issue
May 28, 2025
Loading
Loading status checks…
Add `read_buf` equivalents for positioned reads Adds the following items under the ~~`read_buf` (#78485)~~ `read_buf_at` (#140771) feature: - `std::os::unix::fs::FileExt::read_buf_at` - `std::os::unix::fs::FileExt::read_buf_exact_at` - `std::os::windows::fs::FileExt::seek_read_buf` try-job: x86_64-msvc-1 try-job: x86_64-msvc-2
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-io
Area: `std::io`, `std::fs`, `std::net` and `std::path`
C-tracking-issue
Category: An issue tracking the progress of sth. like the implementation of an RFC
S-tracking-unimplemented
Status: The feature has not been implemented.
T-libs-api
Relevant to the library API team, which will review and decide on the PR/issue.
Uh oh!
There was an error while loading. Please reload this page.
Feature gate:
#![feature(read_buf_at)]
This is a tracking issue for
FileExt::read_buf_at()
and related methods, providing positioned reads into unintialized buffers.#![feature(read_buf)]
adds support for reads into unintialized buffers viaBorrowedBuf
andBorrowedCursor
. This feature expands that to reads from specific offsets.Public API
Steps / History
FileExt::read_buf_at
, ...) libs-team#581read_buf
equivalents for positioned reads #140459Unresolved Questions
#![feature(core_io_borrowed_buf)]
changes before stabilization?#![feature(read_buf)]
changes before stabilization?Footnotes
https://std-dev-guide.rust-lang.org/feature-lifecycle/stabilization.html ↩
The text was updated successfully, but these errors were encountered: