1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! Platform-specific functionality. #[cfg(unix)] pub mod unix; #[cfg(any( target_vendor = "apple", target_os = "freebsd", target_os = "netbsd", target_os = "openbsd", target_os = "dragonfly", ))] pub mod kqueue; #[cfg(windows)] pub mod windows;