https://golangbot.com/structs/
Golang Structs Tutorial with Examples | golangbot.com
A struct is a user defined data type which represents a collections of fields. Structs can either be named or anonymous. It is also possible to create nested...
golang structswith examplestutorialgolangbot
https://www.willem.dev/articles/large-structs-in-table-tests/
Dealing with large structs in (table) tests in Go/Golang
Sep 7, 2023 - Are your tests growing out of control? This article explains how to deal with large structs in tests.
dealinglargestructstable
https://www.willem.dev/articles/slice-of-pointers-structs/
Should you use a slice of pointers to structs in Go/Golang?
Aug 20, 2023 - What is the difference between a slice of pointers and a slice of values? And when should you use one or the other? This article explains.
a slice of