cap_primitives/rustix/
mod.rs

1//! The `rustix` module contains code specific to the Posix-ish platforms
2//! supported by the `rustix` crate.
3
4pub(crate) mod fs;
5
6#[cfg(any(
7    target_os = "macos",
8    target_os = "ios",
9    target_os = "tvos",
10    target_os = "watchos",
11    target_os = "visionos",
12))]
13mod darwin;
14#[cfg(target_os = "freebsd")]
15mod freebsd;
16#[cfg(any(target_os = "android", target_os = "linux"))]
17mod linux;