1 2 3 4 5 6 7 8 9 10 11
#[cfg(target_os = "windows")] mod win; #[cfg(target_os = "windows")] pub use win::*; #[cfg(target_os = "linux")] mod unix; #[cfg(target_os = "linux")] pub use unix::*; pub mod ty; pub use ty::*;