I'm new to Swift and is trying to learn the concept of Memberwise Initialisers. The statement below came from "The Swift Programming Language 2.1".
My question is, under what kind of circumstance, a stored property in a structure would not have a default values? A example with explanation would be greatly appreciated.
Memberwise Initializers for Structure Types
Structure types automatically receive a memberwise initializer if they do not define any of their own custom initializers. Unlike a default initializer, the structure receives a memberwise initializer even if it has stored properties that do not have default values.