Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var GoKindMap = map[protoreflect.Kind]GoKind{ protoreflect.DoubleKind: GoFloat64, protoreflect.FloatKind: GoFloat32, protoreflect.Int64Kind: GoInt64, protoreflect.Uint64Kind: GoUint64, protoreflect.Int32Kind: GoInt32, protoreflect.Fixed64Kind: GoUint64, protoreflect.Fixed32Kind: GoUint32, protoreflect.BoolKind: GoBool, protoreflect.StringKind: GoString, protoreflect.BytesKind: GoBytes, protoreflect.Uint32Kind: GoUint32, protoreflect.Sfixed32Kind: GoInt32, protoreflect.Sfixed64Kind: GoInt64, protoreflect.Sint32Kind: GoInt32, protoreflect.Sint64Kind: GoInt64, }
View Source
var JSONKindMap = map[protoreflect.Kind]JSONKind{ protoreflect.DoubleKind: JSONFloat, protoreflect.FloatKind: JSONFloat, protoreflect.Int64Kind: JSONString, protoreflect.Uint64Kind: JSONString, protoreflect.Int32Kind: JSONInt, protoreflect.Fixed64Kind: JSONString, protoreflect.Fixed32Kind: JSONInt, protoreflect.BoolKind: JSONBoolean, protoreflect.StringKind: JSONString, protoreflect.MessageKind: JSONObject, protoreflect.BytesKind: JSONBase64String, protoreflect.Uint32Kind: JSONInt, protoreflect.EnumKind: JSONEnumString, protoreflect.Sfixed32Kind: JSONInt, protoreflect.Sfixed64Kind: JSONString, protoreflect.Sint32Kind: JSONInt, protoreflect.Sint64Kind: JSONString, }
Functions ¶
func FormatComments ¶
func FormatComments(set protogen.CommentSet) string
Types ¶
type GoKind ¶
type GoKind int
const ( GoInt32 GoKind GoInt64 GoUint32 GoUint64 GoFloat32 GoFloat64 GoBool GoString GoBytes )
func GoKindFrom ¶
func GoKindFrom(k protoreflect.Kind) GoKind
type JSONKind ¶
type JSONKind int
const ( JSONInt JSONKind JSONFloat JSONString JSONBoolean JSONBase64String JSONEnumString JSONObject )
func JSONKindFrom ¶
func JSONKindFrom(k protoreflect.Kind) JSONKind
Click to show internal directories.
Click to hide internal directories.