2022-03-12 20:38:44 +00:00
|
|
|
error[E0027]: pattern does not mention field `stable2` and inaccessible fields
|
|
|
|
--> $DIR/stable-gated-fields.rs:8:9
|
|
|
|
|
|
|
|
|
LL | let UnstableStruct { stable } = UnstableStruct::default();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ missing field `stable2` and inaccessible fields
|
|
|
|
|
|
|
|
|
help: include the missing field in the pattern and ignore the inaccessible fields
|
|
|
|
|
|
2025-02-13 03:07:18 +00:00
|
|
|
LL | let UnstableStruct { stable, stable2, .. } = UnstableStruct::default();
|
2025-02-13 03:21:25 +00:00
|
|
|
| +++++++++++++
|
2022-03-12 20:38:44 +00:00
|
|
|
help: if you don't care about this missing field, you can explicitly ignore it
|
|
|
|
|
|
2025-02-13 03:07:18 +00:00
|
|
|
LL | let UnstableStruct { stable, stable2: _, .. } = UnstableStruct::default();
|
2025-02-13 03:21:25 +00:00
|
|
|
| ++++++++++++++++
|
2024-10-22 05:51:54 +00:00
|
|
|
help: or always ignore missing fields here
|
|
|
|
|
|
2025-02-13 03:07:18 +00:00
|
|
|
LL | let UnstableStruct { stable, .. } = UnstableStruct::default();
|
2025-02-13 03:21:25 +00:00
|
|
|
| ++++
|
2022-03-12 20:38:44 +00:00
|
|
|
|
|
|
|
error: pattern requires `..` due to inaccessible fields
|
|
|
|
--> $DIR/stable-gated-fields.rs:11:9
|
|
|
|
|
|
|
|
|
LL | let UnstableStruct { stable, stable2 } = UnstableStruct::default();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: ignore the inaccessible and unused fields
|
|
|
|
|
|
|
|
|
LL | let UnstableStruct { stable, stable2, .. } = UnstableStruct::default();
|
|
|
|
| ++++
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0027`.
|