当前位置: 首页>>代码示例>>Golang>>正文


Golang FieldDescriptorProto.GetKey方法代码示例

本文整理汇总了Golang中github.com/gogo/protobuf/protoc-gen-gogo/descriptor.FieldDescriptorProto.GetKey方法的典型用法代码示例。如果您正苦于以下问题:Golang FieldDescriptorProto.GetKey方法的具体用法?Golang FieldDescriptorProto.GetKey怎么用?Golang FieldDescriptorProto.GetKey使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在github.com/gogo/protobuf/protoc-gen-gogo/descriptor.FieldDescriptorProto的用法示例。


在下文中一共展示了FieldDescriptorProto.GetKey方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: newFixed32IntField

func newFixed32IntField(f *descriptor.FieldDescriptorProto) *fixed32IntField {
	return &fixed32IntField{f.GetKey()}
}
开发者ID:katydid,项目名称:katydid,代码行数:3,代码来源:proto.go

示例2: newSint64Field

func newSint64Field(f *descriptor.FieldDescriptorProto) *sint64Field {
	return &sint64Field{f.GetKey()}
}
开发者ID:katydid,项目名称:katydid,代码行数:3,代码来源:proto.go

示例3: newStringField

func newStringField(f *descriptor.FieldDescriptorProto) *stringField {
	return &stringField{f.GetKey()}
}
开发者ID:katydid,项目名称:katydid,代码行数:3,代码来源:proto.go

示例4: newBytesField

func newBytesField(f *descriptor.FieldDescriptorProto) *bytesField {
	return &bytesField{f.GetKey()}
}
开发者ID:katydid,项目名称:katydid,代码行数:3,代码来源:proto.go

示例5: newUintField

func newUintField(f *descriptor.FieldDescriptorProto) *uintField {
	return &uintField{f.GetKey()}
}
开发者ID:katydid,项目名称:katydid,代码行数:3,代码来源:proto.go

示例6: newBoolField

func newBoolField(f *descriptor.FieldDescriptorProto) *boolField {
	return &boolField{f.GetKey()}
}
开发者ID:katydid,项目名称:katydid,代码行数:3,代码来源:proto.go

示例7: newIntField

func newIntField(f *descriptor.FieldDescriptorProto) *intField {
	return &intField{f.GetKey()}
}
开发者ID:katydid,项目名称:katydid,代码行数:3,代码来源:proto.go

示例8: newFloatField

func newFloatField(f *descriptor.FieldDescriptorProto) *floatField {
	return &floatField{f.GetKey()}
}
开发者ID:katydid,项目名称:katydid,代码行数:3,代码来源:proto.go

示例9: newDoubleField

func newDoubleField(f *descriptor.FieldDescriptorProto) *doubleField {
	return &doubleField{f.GetKey()}
}
开发者ID:katydid,项目名称:katydid,代码行数:3,代码来源:proto.go

示例10: newMsgField

func newMsgField(desc protoparser.DescMap, field *descriptor.FieldDescriptorProto, msg *descriptor.DescriptorProto) *msgField {
	return &msgField{
		key: field.GetKey(),
		msg: newMsg(desc, msg),
	}
}
开发者ID:katydid,项目名称:katydid,代码行数:6,代码来源:proto.go

示例11: newRepeatedField

func newRepeatedField(desc protoparser.DescMap, f *descriptor.FieldDescriptorProto) *repeatedField {
	return &repeatedField{
		key:      f.GetKey(),
		fieldEnc: newSingleField(desc, f),
	}
}
开发者ID:katydid,项目名称:katydid,代码行数:6,代码来源:proto.go


注:本文中的github.com/gogo/protobuf/protoc-gen-gogo/descriptor.FieldDescriptorProto.GetKey方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。