rustix/fs/
mod.rs

1//! Filesystem operations.
2
3mod abs;
4#[cfg(not(target_os = "redox"))]
5mod at;
6mod constants;
7#[cfg(linux_kernel)]
8mod copy_file_range;
9#[cfg(all(feature = "alloc", not(any(target_os = "espidf", target_os = "redox"))))]
10mod dir;
11#[cfg(not(any(
12    apple,
13    netbsdlike,
14    target_os = "dragonfly",
15    target_os = "espidf",
16    target_os = "haiku",
17    target_os = "horizon",
18    target_os = "redox",
19    target_os = "solaris",
20    target_os = "vita",
21)))]
22mod fadvise;
23pub(crate) mod fcntl;
24#[cfg(apple)]
25mod fcntl_apple;
26#[cfg(apple)]
27mod fcopyfile;
28pub(crate) mod fd;
29#[cfg(all(apple, feature = "alloc"))]
30mod getpath;
31#[cfg(not(target_os = "wasi"))] // WASI doesn't have get[gpu]id.
32mod id;
33#[cfg(linux_kernel)]
34pub mod inotify;
35#[cfg(linux_kernel)]
36mod ioctl;
37#[cfg(not(any(
38    target_os = "espidf",
39    target_os = "haiku",
40    target_os = "horizon",
41    target_os = "redox",
42    target_os = "vita",
43    target_os = "wasi"
44)))]
45mod makedev;
46#[cfg(any(linux_kernel, target_os = "freebsd"))]
47mod memfd_create;
48#[cfg(linux_kernel)]
49mod openat2;
50#[cfg(linux_kernel)]
51mod raw_dir;
52mod seek_from;
53#[cfg(target_os = "linux")]
54mod sendfile;
55#[cfg(not(any(target_os = "espidf", target_os = "redox")))]
56mod special;
57#[cfg(linux_kernel)]
58mod statx;
59#[cfg(not(any(
60    target_os = "espidf",
61    target_os = "horizon",
62    target_os = "redox",
63    target_os = "vita",
64    target_os = "wasi"
65)))]
66mod sync;
67#[cfg(any(apple, linux_kernel, target_os = "hurd"))]
68mod xattr;
69
70pub use abs::*;
71#[cfg(not(target_os = "redox"))]
72pub use at::*;
73pub use constants::*;
74#[cfg(linux_kernel)]
75pub use copy_file_range::copy_file_range;
76#[cfg(all(feature = "alloc", not(any(target_os = "espidf", target_os = "redox"))))]
77pub use dir::{Dir, DirEntry};
78#[cfg(not(any(
79    apple,
80    netbsdlike,
81    target_os = "dragonfly",
82    target_os = "espidf",
83    target_os = "haiku",
84    target_os = "horizon",
85    target_os = "redox",
86    target_os = "solaris",
87    target_os = "vita",
88)))]
89pub use fadvise::fadvise;
90pub use fcntl::*;
91#[cfg(apple)]
92pub use fcntl_apple::*;
93#[cfg(apple)]
94pub use fcopyfile::*;
95pub use fd::*;
96#[cfg(all(apple, feature = "alloc"))]
97pub use getpath::getpath;
98#[cfg(not(target_os = "wasi"))]
99pub use id::*;
100#[cfg(linux_kernel)]
101pub use ioctl::*;
102#[cfg(not(any(
103    target_os = "espidf",
104    target_os = "haiku",
105    target_os = "horizon",
106    target_os = "redox",
107    target_os = "vita",
108    target_os = "wasi"
109)))]
110pub use makedev::*;
111#[cfg(any(linux_kernel, target_os = "freebsd"))]
112pub use memfd_create::memfd_create;
113#[cfg(linux_kernel)]
114pub use openat2::openat2;
115#[cfg(linux_kernel)]
116pub use raw_dir::{RawDir, RawDirEntry};
117pub use seek_from::SeekFrom;
118#[cfg(target_os = "linux")]
119pub use sendfile::sendfile;
120#[cfg(not(any(target_os = "espidf", target_os = "redox")))]
121pub use special::*;
122#[cfg(linux_kernel)]
123pub use statx::*;
124#[cfg(not(any(
125    target_os = "espidf",
126    target_os = "horizon",
127    target_os = "redox",
128    target_os = "vita",
129    target_os = "wasi"
130)))]
131pub use sync::sync;
132#[cfg(any(apple, linux_kernel, target_os = "hurd"))]
133pub use xattr::*;
134
135/// Re-export types common to POSIX-ish platforms.
136#[cfg(feature = "std")]
137#[cfg(unix)]
138pub use std::os::unix::fs::{DirEntryExt, FileExt, FileTypeExt, MetadataExt, OpenOptionsExt};
139#[cfg(feature = "std")]
140#[cfg(all(wasi_ext, target_os = "wasi"))]
141pub use std::os::wasi::fs::{DirEntryExt, FileExt, FileTypeExt, MetadataExt, OpenOptionsExt};