What is an idiomatic way to customize the representation of a custom struct in a formatted string?
There is no customizing the string representation of a type.
Build it in pieces each time by calling individual fields.
Implement a method String() string
String()
Create a wrapper function that accepts your type and outputs a string.