For example: ``` struct MyStruct { pub a: i64, pub b: i64, } fn main() { let existing = MyStruct {a: 50, b: 50}; MyStruct { a: 100, ..existing }; } ``` The `..` notation does not appear in the book or the reference
For example:
The
..notation does not appear in the book or the reference