Home
last modified time | relevance | path

Searched defs:fieldCommon (Results 1 – 1 of 1) sorted by relevance

/external/golang-protobuf/protoc-gen-go/generator/
Dgenerator.go1775 type fieldCommon struct { struct
1776 goName string // Go name of field, e.g. "FieldName" or "Descriptor_"
1777 protoName string // Name of field in proto language, e.g. "field_name" or "descriptor"
1778 getterName string // Name of the getter, e.g. "GetFieldName" or "GetDescriptor_"
1779 goType string // The Go type as a string, e.g. "*int32" or "*OtherMessage"
1780 …The tag string/annotation for the type, e.g. `protobuf:"varint,8,opt,name=region_id,json=regionId"`
1781 fullPath string // The full path of the field as used by Annotate etc, e.g. "4,0,2,0"
1785 func (f *fieldCommon) getProtoName() string {
1790 func (f *fieldCommon) getGoType() string {
1796 fieldCommon anonMember
[all …]