std/os/fd/mod.rs
1//! Owned and borrowed Unix-like file descriptors.
2//!
3//! This module is supported on Unix platforms and WASI, which both use a
4//! similar file descriptor system for referencing OS resources.
5
6#![stable(feature = "os_fd", since = "1.66.0")]
7#![deny(unsafe_op_in_unsafe_fn)]
8
9// `RawFd`, `AsRawFd`, etc.
10mod raw;
11
12// `OwnedFd`, `AsFd`, etc.
13mod owned;
14
15// Implementations for `AsRawFd` etc. for network types.
16#[cfg(not(target_os = "trusty"))]
17mod net;
18
19// Implementation of stdio file descriptor constants.
20mod stdio;
21
22#[cfg(test)]
23#[cfg(not(target_os = "l4re"))]
24mod tests;
25
26// Export the types and traits for the public API.
27#[stable(feature = "os_fd", since = "1.66.0")]
28pub use owned::*;
29#[stable(feature = "os_fd", since = "1.66.0")]
30pub use raw::*;
31#[unstable(feature = "stdio_fd_consts", issue = "150836")]
32pub use stdio::*;