encoding.TextUnmarshaler.UnmarshalText (method)

9 uses

	encoding (current package)
		encoding.go#L47: 	UnmarshalText(text []byte) error

	encoding/json
		decode.go#L896: 		return ut.UnmarshalText(s)

	encoding/xml
		read.go#L242: 	return val.UnmarshalText(buf)
		read.go#L269: 		return val.Interface().(encoding.TextUnmarshaler).UnmarshalText([]byte(attr.Value))
		read.go#L274: 			return pv.Interface().(encoding.TextUnmarshaler).UnmarshalText([]byte(attr.Value))
		read.go#L563: 		if err := saveData.Interface().(encoding.TextUnmarshaler).UnmarshalText(data); err != nil {
		read.go#L572: 			if err := pv.Interface().(encoding.TextUnmarshaler).UnmarshalText(data); err != nil {

	github.com/golang/protobuf/proto
		text_decode.go#L45: 		return u.UnmarshalText([]byte(s))

	github.com/vmihailenco/msgpack/v5
		decode_value.go#L249: 	return unmarshaler.UnmarshalText(data)