type encoding.TextUnmarshaler

8 uses

	encoding (current package)
		encoding.go#L52: type TextUnmarshaler interface {

	encoding/json
		decode.go#L426: func indirect(v reflect.Value, decodingNull bool) (Unmarshaler, encoding.TextUnmarshaler, reflect.Value) {
		decode.go#L483: 				if u, ok := v.Interface().(encoding.TextUnmarshaler); ok {
		decode.go#L594: var textUnmarshalerType = reflect.TypeOf((*encoding.TextUnmarshaler)(nil)).Elem()

	flag
		flag.go#L299: type textValue struct{ p encoding.TextUnmarshaler }
		flag.go#L301: func newTextValue(val encoding.TextMarshaler, p encoding.TextUnmarshaler) textValue {
		flag.go#L963: func (f *FlagSet) TextVar(p encoding.TextUnmarshaler, name string, value encoding.TextMarshaler, usage string) {
		flag.go#L972: func TextVar(p encoding.TextUnmarshaler, name string, value encoding.TextMarshaler, usage string) {