()
| 1949 | // defField interface implemented by all types of fields that can have defaults (not oneofField, but instead oneofSubField). |
| 1950 | type defField interface { |
| 1951 | getProtoDef() string // default value explicitly stated in the proto file, e.g "yoshi" or "5" |
| 1952 | getProtoName() string // proto name of a field, e.g. "field_name" or "descriptor" |
| 1953 | getGoType() string // go type of the field as a string, e.g. "*int32" |
| 1954 | getProtoTypeName() string // protobuf type name for the field, e.g. ".google.protobuf.Duration" |
no outgoing calls
no test coverage detected