1 2 3 4 5 6 7 8
use getifs::interfaces; fn main() { let ift = interfaces().unwrap(); for ifi in ift { println!("{ifi:?}"); } }