1 2 3 4 5 6 7 8 9
#[cfg(unix)] mod ipc_unix; #[cfg(unix)] pub use ipc_unix::*; #[cfg(windows)] mod ipc_windows; #[cfg(windows)] pub use ipc_windows::*;