1 2 3 4 5 6 7 8
use getifs::route_table; fn main() { let routes = route_table().unwrap(); for r in routes { println!("Route: {r}"); } }