Allow you to elide some fields in struct literals. So with ``` rust struct Foo { a: i32 } ``` you can write `Foo {}` to get `Foo { a: 0 }`.