diff --git a/src/user-defined-types/named-structs.md b/src/user-defined-types/named-structs.md index 5982fa35..00732c11 100644 --- a/src/user-defined-types/named-structs.md +++ b/src/user-defined-types/named-structs.md @@ -53,6 +53,8 @@ Key Points: not important. - If you already have variables with the right names, then you can create the struct using a shorthand. +- Struct fields do not support default values. Default values are specified by + implementing the `Default` trait which we will cover later. ## More to Explore