type encoding.TextUnmarshaler
8 uses
encoding (current package)
encoding.go#L64: type TextUnmarshaler interface {
encoding/json
decode.go#L427: func indirect(v reflect.Value, decodingNull bool) (Unmarshaler, encoding.TextUnmarshaler, reflect.Value) {
decode.go#L484: if u, ok := v.Interface().(encoding.TextUnmarshaler); ok {
decode.go#L595: var textUnmarshalerType = reflect.TypeFor[encoding.TextUnmarshaler]()
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) {