convert

package
v1.0.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 9, 2022 License: MIT Imports: 0 Imported by: 0

Documentation

Index

Constants

View Source
const (
	Unknown   fieldTypConst = "unknown"
	Int       fieldTypConst = "int"
	Int64     fieldTypConst = "int64"
	Float64   fieldTypConst = "float64"
	String    fieldTypConst = "string"
	Bool      fieldTypConst = "bool"
	StructTyp fieldTypConst = "struct"
	Array     fieldTypConst = "[]interface"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type FieldTyp

type FieldTyp struct {
	Ptr *Struct // if typ is struct, ptr point the struct; otherwise nil
	Typ fieldTypConst
}

FieldTyp is the struct field type

type Struct

type Struct struct {
	Name    string
	Comment string
	Fields  []StructField
}

Struct represent the whole struct

type StructField

type StructField struct {
	Key     string
	Typ     FieldTyp
	Tags    []StructFieldTag
	Comment string
}

StructField is the field in struct

type StructFieldTag

type StructFieldTag struct {
	Typ     string
	Content string
}

StructFieldTag is the struct tag

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL