Structsยง
- A struct initialization expression, e.g.,
Foo { bar: 42, baz }
. - An initializer for a single field / variable of a struct initializer expression. That is, in
Foo { bar: 42, baz }
, this is eitherbar: 42
, orbaz
.
Foo { bar: 42, baz }
.Foo { bar: 42, baz }
, this is either bar: 42
, or baz
.