1 | //! I/O operations. |
---|---|
2 | //! |
3 | //! If you're looking for [`SeekFrom`], it's in the [`fs`] module. |
4 | //! |
5 | //! [`SeekFrom`]: crate::fs::SeekFrom |
6 | //! [`fs`]: crate::fs |
7 | |
8 | mod close; |
9 | #[cfg(not(windows))] |
10 | mod dup; |
11 | mod errno; |
12 | #[cfg(not(windows))] |
13 | mod fcntl; |
14 | mod ioctl; |
15 | mod read_write; |
16 | |
17 | pub use close::*; |
18 | #[cfg(not(windows))] |
19 | pub use dup::*; |
20 | pub use errno::{retry_on_intr, Errno, Result}; |
21 | #[cfg(not(windows))] |
22 | pub use fcntl::*; |
23 | pub use ioctl::*; |
24 | pub use read_write::*; |
25 |