1 2 3 4 5 6 7
use mac_address::MacAddressIterator; fn main() { for addr in MacAddressIterator::new().unwrap() { println!("{}", addr); } }