tempfile/file/imp/
mod.rs

1
2
3
4
5
6
7
8
9
#[cfg_attr(any(unix, target_os = "redox", target_os = "wasi"), path = "unix.rs")]
#[cfg_attr(windows, path = "windows.rs")]
#[cfg_attr(
    not(any(unix, target_os = "redox", target_os = "wasi", windows)),
    path = "other.rs"
)]
mod platform;

pub use self::platform::*;