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#[cfg(test)]
20mod tests;
21
22// Export the types and traits for the public API.
23#[stable(feature = "os_fd", since = "1.66.0")]
24pub use owned::*;
25#[stable(feature = "os_fd", since = "1.66.0")]
26pub use raw::*;