1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
netif ===== List the network interfaces on the system. Example usage: ```rust fn main() { for ifa in netif::up().unwrap() { if !ifa.address().is_loopback() { println!("{:?}", ifa); } } } ``` license ======= ISC, see the LICENSE file.