We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
struct Foo { bar: int, baz: int } let foo = Foo { bar: 0, baz: 1 }; let foo_clone = Foo { ..foo }; // error
As @metajack pointed out, this would be useful to avoid special-casing in macros and the like.