1 2 3 4 5 6 7 8 9 10
use cfg_if::cfg_if; cfg_if! { if #[cfg(unix)] { mod unix; #[allow(unused_imports)] pub use self::unix::*; } }