1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#[cfg(target_os = "linux")] mod linux; #[cfg(target_os = "macos")] mod macos; #[cfg(unix)] mod unix_io; #[cfg(windows)] mod windows; #[cfg(target_os = "linux")] pub(crate) use linux::*; #[cfg(target_os = "macos")] pub(crate) use macos::*; #[cfg(windows)] pub(crate) use windows::*;