Structs
You can define an anonymous Tuple Struct by using the struct
keyword, followed by the name of the tuple struct and the value types that the struct should hold in brackets. These Tuple Structs are useful if you want to give a particular tuple a name and differentiate them by type.
struct Color(u16, u16, u16);
struct IdCode(String, String, i32);