E.g., ``` struct Foo { 0: String, 42: i32, } fn main() { let foo = Foo { 42: 0, 0: "Hello".to_owned() }; let x: i32 = foo.42; } ``` Helps bridge the gap between structs and tuples. cc @nikomatsakis