-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
Tracking Issue for std::os::fd #98699
Copy link
Copy link
Closed
Labels
C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCCategory: 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.Relevant to the library API team, which will review and decide on the PR/issue.
Metadata
Metadata
Assignees
Labels
C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCCategory: 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.Relevant to the library API team, which will review and decide on the PR/issue.
Type
Fields
Give feedbackNo fields configured for issues without a type.
Feature gate:
#![feature(os_fd)]This is a tracking issue for the
std::os::fdmodule, which is currently defined onboth Unix and WASI , and contains
OwnedFd,BorrowedFd,RawFd,AsFd,AsRawFd,IntoRawFd, andFromRawFd.Public API
The types and traits are the same as those already defined in
std::os::unix::ioand
std::os::wasi::io. This PR is just introducing a new alias for them to helpusers write portable code.
Steps / History
std::os::fdpublic. #98368Unresolved Questions
std::os. One can think of it as meaning "OS's that use fds". Is that weird?