type encoding.TextUnmarshaler

6 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.TypeFor[encoding.TextUnmarshaler]()

	github.com/oapi-codegen/runtime
		bindparam.go#L98: 	if tu, ok := dest.(encoding.TextUnmarshaler); ok {
		bindstring.go#L101: 		if tu, ok := dst.(encoding.TextUnmarshaler); ok {