1use systemconfiguration::CaptiveNetwork; 2 3fn main() { 4 let interfaces = CaptiveNetwork::supported_interfaces(); 5 println!("supported_interfaces={interfaces:?}"); 6}