Validating Structs Idiomatically
In Go, ensuring the validity of struct values is often done by explicitly checking each field individually. While this approach is straightforward for small structures, it can become tedious for larger ones with numerous fields.
Can we improve the validation process?
The standard approach, illustrated in the following code snippet, involves manually checking each field:
type Event struct {
Id int
UserId int
Start time.Time
End time.Time
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3