mac_address 1.1.8

Cross-platform retrieval of a network interface MAC address.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(target_os = "windows")]
#[path = "windows.rs"]
mod internal;

#[cfg(any(
    target_os = "linux",
    target_os = "macos",
    target_os = "freebsd",
    target_os = "netbsd",
    target_os = "openbsd",
    target_os = "android",
    target_os = "illumos",
))]
#[path = "linux.rs"]
mod internal;

pub use internal::MacAddressIterator;