1 2 3 4 5 6 7
use flytrap::Region; fn main() { for (code, details) in Region::all() { println!("{}\t{}", code, details.name); } }