Skip to content

Tracking Issue for #![feature(unix_file_vectored_at)] #89517

Open
@a1phyr

Description

@a1phyr
Contributor

Feature gate: #![feature(unix_file_vectored_at)]

This is a tracking issue for positioned vectored I/O on Unix platforms.

Public API

trait std::os::unix::fs::FileExt {
    // Existing methods: `read_at`, `read_exact_at`, `write_at`, `write_all_at`

    fn read_vectored_at(&self, bufs: &mut [io::IoSliceMut<'_>], offset: u64) -> io::Result<usize>;
    fn write_vectored_at(&self, bufs: &[io::IoSlice<'_>], offset: u64) -> io::Result<usize>;
}

Steps / History

  • Final comment period (FCP)
    Stabilization PR

Activity

added
C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFC
T-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.
on Oct 4, 2021
changed the title [-]Tracking Issue for XXX[/-] [+]Tracking Issue for `#![feature(unix_file_vectored_at)]`[/+] on Oct 4, 2021
added a commit that references this issue on Oct 11, 2021

Rollup merge of rust-lang#89518 - a1phyr:unix_file_vectored_at, r=jos…

ead81cf
added a commit that references this issue on Feb 28, 2023

Rollup merge of rust-lang#89518 - a1phyr:unix_file_vectored_at, r=wor…

3c31ed8
added a commit that references this issue on Feb 28, 2023

Rollup merge of rust-lang#89518 - a1phyr:unix_file_vectored_at, r=wor…

f5fcfcf
added a commit that references this issue on Mar 4, 2023

Auto merge of rust-lang#89518 - a1phyr:unix_file_vectored_at, r=worki…

added a commit that references this issue on Mar 26, 2024

Rollup merge of rust-lang#122880 - a1phyr:preadv_more_platform, r=wor…

1104d3b
added a commit that references this issue on Mar 27, 2024

Rollup merge of rust-lang#122880 - a1phyr:preadv_more_platform, r=wor…

4bdf171
added a commit that references this issue on Mar 27, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCT-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @a1phyr

        Issue actions

          Tracking Issue for `#![feature(unix_file_vectored_at)]` · Issue #89517 · rust-lang/rust