network-interface 2.0.5

Retrieve system's Network Interfaces on Linux, FreeBSD, macOS and Windows on a standarized manner
Documentation
1
2
3
4
5
6
use network_interface::{NetworkInterface, NetworkInterfaceConfig};

fn main() {
    let interfaces = NetworkInterface::show().unwrap();
    println!("{interfaces:#?}");
}