Error code E0026
A struct pattern attempted to extract a nonexistent field from a struct.
Erroneous code example:
ⓘ
If you are using shorthand field patterns but want to refer to the struct field
by a different name, you should rename it explicitly. Struct fields are
identified by the name used before the colon :
so struct patterns should
resemble the declaration of the struct type being matched.