I have the following struct which contains a net/http.Request:
struct
net/http.Request
type MyRequest struct { http.Request PathParams map[string]strin
As Jeremy shows above, the "name" of an anonymous field is the same as the type of the field. So if the value of x were a struct containing an anonymous int, then x.int would refer to that field.