本文整理汇总了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))
}
示例2: String
func (x URLFetchRequest_RequestMethod) String() string {
return proto.EnumName(URLFetchRequest_RequestMethod_name, int32(x))
}
示例3: Error
func (x response_Err) Error() string {
return proto.EnumName(response_Err_name, int32(x))
}
示例4: String
func (x VoiceModeControl_EnumVoiceModeControl) String() string {
return proto.EnumName(VoiceModeControl_EnumVoiceModeControl_name, int32(x))
}
示例5: String
func (x TaskState) String() string {
return proto.EnumName(TaskState_name, int32(x))
}
示例6: String
func (x FileOptions_OptimizeMode) String() string {
return proto.EnumName(FileOptions_OptimizeMode_name, int32(x))
}
示例7: String
func (x msg_Cmd) String() string {
return proto.EnumName(msg_Cmd_name, int32(x))
}
示例8: String
func (x Blob_CompressionInfo_CompressionType) String() string {
return proto.EnumName(Blob_CompressionInfo_CompressionType_name, int32(x))
}
示例9: String
func (x LS_UpdatePlayerCountResult_Result) String() string {
return proto.EnumName(LS_UpdatePlayerCountResult_Result_name, int32(x))
}
示例10: String
func (x Header_MessageType) String() string {
return proto1.EnumName(Header_MessageType_name, int32(x))
}
示例11: String
func (x Command) String() string {
return proto.EnumName(Command_name, int32(x))
}
示例12: String
func (x Operation_Type) String() string {
return proto.EnumName(Operation_Type_name, int32(x))
}
示例13: String
func (x Response_ErrorCode) String() string {
return proto.EnumName(Response_ErrorCode_name, int32(x))
}