go-ml.dev/pkg/base@v0.0.0-20200610162856-60c38abac71b/tables/meta.go (about) 1 package tables 2 3 import "reflect" 4 5 type Meta interface { 6 Type() reflect.Type 7 Convert(string, *reflect.Value, int, int) (bool, error) 8 Format(reflect.Value, bool) string 9 }