io_at/os/
mod.rs

1#[cfg(unix)]
2pub mod unix;
3#[cfg(windows)]
4pub mod windows;
5
6/* Expose the semi-compatible IoAtRaw types via the same name */
7#[cfg(unix)]
8pub use self::unix::{AsRaw,pread,pwrite};
9#[cfg(windows)]
10pub use self::windows::{AsRaw,pread,pwrite};
11
12#[cfg(any(unix,windows))]
13pub mod raw;
14#[cfg(any(unix,windows))]
15pub use self::raw::IoAtRaw;
16
17#[cfg(any(unix,windows))]
18pub mod file;