當前位置: 首頁>>代碼示例>>Golang>>正文


Golang proto.EnumName函數代碼示例

本文整理匯總了Golang中code/google/com/p/goprotobuf/proto.EnumName函數的典型用法代碼示例。如果您正苦於以下問題:Golang EnumName函數的具體用法?Golang EnumName怎麽用?Golang EnumName使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了EnumName函數的13個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: String

func (x MyMessage_Color) String() string {
	return proto.EnumName(MyMessage_Color_name, int32(x))
}
開發者ID:LeXa4894,項目名稱:test,代碼行數:3,代碼來源:test.pb.go

示例2: String

func (x URLFetchRequest_RequestMethod) String() string {
	return proto.EnumName(URLFetchRequest_RequestMethod_name, int32(x))
}
開發者ID:LeXa4894,項目名稱:test,代碼行數:3,代碼來源:urlfetch_service.pb.go

示例3: Error

func (x response_Err) Error() string {
	return proto.EnumName(response_Err_name, int32(x))
}
開發者ID:dcjones,項目名稱:doozer,代碼行數:3,代碼來源:msg.pb.go

示例4: String

func (x VoiceModeControl_EnumVoiceModeControl) String() string {
	return proto.EnumName(VoiceModeControl_EnumVoiceModeControl_name, int32(x))
}
開發者ID:botaydotcom,項目名稱:GoMessagingTestFrameWork,代碼行數:3,代碼來源:CommonProtocol.pb.go

示例5: String

func (x TaskState) String() string {
	return proto.EnumName(TaskState_name, int32(x))
}
開發者ID:nekto0n,項目名稱:gomes,代碼行數:3,代碼來源:mesos.pb.go

示例6: String

func (x FileOptions_OptimizeMode) String() string {
	return proto.EnumName(FileOptions_OptimizeMode_name, int32(x))
}
開發者ID:kamilsmuga,項目名稱:go-rest-protobuf-udp-server,代碼行數:3,代碼來源:descriptor.pb.go

示例7: String

func (x msg_Cmd) String() string {
	return proto.EnumName(msg_Cmd_name, int32(x))
}
開發者ID:CrazyJvm,項目名稱:doozerd,代碼行數:3,代碼來源:m.pb.go

示例8: String

func (x Blob_CompressionInfo_CompressionType) String() string {
	return proto.EnumName(Blob_CompressionInfo_CompressionType_name, int32(x))
}
開發者ID:petemoore,項目名稱:runlib,代碼行數:3,代碼來源:Blobs.pb.go

示例9: String

func (x LS_UpdatePlayerCountResult_Result) String() string {
	return proto.EnumName(LS_UpdatePlayerCountResult_Result_name, int32(x))
}
開發者ID:bodogbo,項目名稱:OSG-Server-Go,代碼行數:3,代碼來源:LSPacket.pb.go

示例10: String

func (x Header_MessageType) String() string {
	return proto1.EnumName(Header_MessageType_name, int32(x))
}
開發者ID:petemoore,項目名稱:rpc4,代碼行數:3,代碼來源:rpcfour.pb.go

示例11: String

func (x Command) String() string {
	return proto.EnumName(Command_name, int32(x))
}
開發者ID:lijie,項目名稱:siriusdb,代碼行數:3,代碼來源:online.pb.go

示例12: String

func (x Operation_Type) String() string {
	return proto.EnumName(Operation_Type_name, int32(x))
}
開發者ID:hardiku,項目名稱:gozer,代碼行數:3,代碼來源:state.pb.go

示例13: String

func (x Response_ErrorCode) String() string {
	return proto.EnumName(Response_ErrorCode_name, int32(x))
}
開發者ID:ronaldevers,項目名稱:influxdb,代碼行數:3,代碼來源:protocol.pb.go


注:本文中的code/google/com/p/goprotobuf/proto.EnumName函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。