Skip to content
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

Make std::os::fd public. #98368

Merged
merged 5 commits into from
Sep 29, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Re-introduce unstable attributes.
Add `#[unstable(feature = "os_fd", issue = "98699")]` to the new
`pub use` declarations.
  • Loading branch information
sunfishcode committed Aug 29, 2022
commit 7d80510c16bd2172427aff61e5d929aa695cdfa5
4 changes: 2 additions & 2 deletions library/std/src/os/fd/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ mod net;
mod tests;

// Export the types and traits for the public API.
#[stable(feature = "io_safety", since = "1.63.0")]
#[unstable(feature = "os_fd", issue = "98699")]
pub use owned::*;
#[stable(feature = "rust1", since = "1.0.0")]
#[unstable(feature = "os_fd", issue = "98699")]
pub use raw::*;