| 424 | } |
| 425 | |
| 426 | type structType struct { |
| 427 | name string |
| 428 | fields []Field |
| 429 | fieldsByName map[string]int |
| 430 | fieldsByNumber map[FieldNumber]int |
| 431 | } |
| 432 | |
| 433 | func (t *structType) String() string { |
| 434 | s := strings.Builder{} |
nothing calls this directly
no outgoing calls
no test coverage detected