network_interface/utils/
mod.rs1#[cfg(windows)]
2pub mod hex;
3
4#[cfg(any(
5 target_os = "android",
6 target_os = "linux",
7 target_os = "ios",
8 target_os = "macos",
9 target_os = "freebsd",
10 target_os = "openbsd",
11 target_os = "netbsd",
12 target_os = "dragonfly"
13))]
14mod unix;
15
16#[cfg(windows)]
17pub(crate) mod ffialloc;
18
19#[cfg(any(
20 target_os = "android",
21 target_os = "linux",
22 target_os = "ios",
23 target_os = "macos",
24 target_os = "freebsd",
25 target_os = "openbsd",
26 target_os = "netbsd",
27 target_os = "dragonfly"
28))]
29pub use unix::*;