github.com/jackc/pgx/v5/pgtype.XMLCodec.Unmarshal (field)

8 uses

	github.com/jackc/pgx/v5/pgtype (current package)
		json.go#L13: 	Unmarshal func(data []byte, v any) error
		json.go#L169: 		return &scanPlanJSONToJSONUnmarshal{unmarshal: c.Unmarshal}
		json.go#L241: 	err := c.Unmarshal(src, &dst)
		jsonb.go#L24: 		plan := (&JSONCodec{Marshal: c.Marshal, Unmarshal: c.Unmarshal}).PlanEncode(m, oid, TextFormatCode, value)
		jsonb.go#L29: 		return (&JSONCodec{Marshal: c.Marshal, Unmarshal: c.Unmarshal}).PlanEncode(m, oid, format, value)
		jsonb.go#L47: 		plan := (&JSONCodec{Marshal: c.Marshal, Unmarshal: c.Unmarshal}).PlanScan(m, oid, TextFormatCode, target)
		jsonb.go#L52: 		return (&JSONCodec{Marshal: c.Marshal, Unmarshal: c.Unmarshal}).PlanScan(m, oid, format, target)
		pgtype_default.go#L68: 	defaultMap.RegisterType(&Type{Name: "json", OID: JSONOID, Codec: &JSONCodec{Marshal: json.Marshal, Unmarshal: json.Unmarshal}})