func encoding/json.Unmarshal

55 uses

	encoding/json (current package)
		decode.go#L102: func Unmarshal(data []byte, v any) error {

	github.com/jackc/pgx/v5/pgconn
		auth_oauth.go#L52: 		err := json.Unmarshal(m.Data, &errResponse)

	github.com/jackc/pgx/v5/pgproto3
		authentication_gss.go#L54: 	if err := json.Unmarshal(data, &msg); err != nil {
		authentication_gss_continue.go#L61: 	if err := json.Unmarshal(data, &msg); err != nil {
		authentication_md5_password.go#L70: 	if err := json.Unmarshal(data, &msg); err != nil {
		authentication_sasl_continue.go#L69: 	if err := json.Unmarshal(data, &msg); err != nil {
		authentication_sasl_final.go#L69: 	if err := json.Unmarshal(data, &msg); err != nil {
		backend_key_data.go#L60: 	if err := json.Unmarshal(data, &msg); err != nil {
		bind.go#L207: 	err := json.Unmarshal(data, &msg)
		cancel_request.go#L74: 	if err := json.Unmarshal(data, &msg); err != nil {
		close.go#L70: 	if err := json.Unmarshal(data, &msg); err != nil {
		command_complete.go#L60: 	if err := json.Unmarshal(data, &msg); err != nil {
		copy_both_response.go#L84: 	if err := json.Unmarshal(data, &msg); err != nil {
		copy_data.go#L53: 	if err := json.Unmarshal(data, &msg); err != nil {
		copy_in_response.go#L85: 	if err := json.Unmarshal(data, &msg); err != nil {
		copy_out_response.go#L85: 	if err := json.Unmarshal(data, &msg); err != nil {
		data_row.go#L127: 	if err := json.Unmarshal(data, &msg); err != nil {
		describe.go#L70: 	if err := json.Unmarshal(data, &msg); err != nil {
		error_response.go#L300: 	if err := json.Unmarshal(data, &msg); err != nil {
		function_call_response.go#L91: 	err := json.Unmarshal(data, &msg)
		gss_response.go#L41: 	if err := json.Unmarshal(data, &msg); err != nil {
		negotiate_protocol_version.go#L86: 	if err := json.Unmarshal(data, &msg); err != nil {
		ready_for_query.go#L53: 	if err := json.Unmarshal(data, &msg); err != nil {
		row_description.go#L149: 	if err := json.Unmarshal(data, &msg); err != nil {
		sasl_initial_response.go#L81: 	if err := json.Unmarshal(data, &msg); err != nil {
		sasl_response.go#L45: 	if err := json.Unmarshal(data, &msg); err != nil {

	github.com/jackc/pgx/v5/pgtype
		bool.go#L91: 	err := json.Unmarshal(b, &v)
		date.go#L97: 	err := json.Unmarshal(b, &s)
		float4.go#L83: 	err := json.Unmarshal(b, &n)
		float8.go#L91: 	err := json.Unmarshal(b, &n)
		int.go#L110: 	err := json.Unmarshal(b, &n)
		int.go#L673: 	err := json.Unmarshal(b, &n)
		int.go#L1247: 	err := json.Unmarshal(b, &n)
		pgtype_default.go#L68: 	defaultMap.RegisterType(&Type{Name: "json", OID: JSONOID, Codec: &JSONCodec{Marshal: json.Marshal, Unmarshal: json.Unmarshal}})
		pgtype_default.go#L69: 	defaultMap.RegisterType(&Type{Name: "jsonb", OID: JSONBOID, Codec: &JSONBCodec{Marshal: json.Marshal, Unmarshal: json.Unmarshal}})
		text.go#L72: 	err := json.Unmarshal(b, &s)
		timestamp.go#L98: 	err := json.Unmarshal(b, &s)
		timestamptz.go#L105: 	err := json.Unmarshal(b, &s)
		uint32.go#L92: 	err := json.Unmarshal(b, &n)

	go.pact.im/x/goupdate
		modules.go#L35: 	if err := json.Unmarshal(buf.Bytes(), &m); err != nil {
		workspaces.go#L62: 	if err := json.Unmarshal(buf.Bytes(), &work); err != nil {
		workspaces.go#L113: 	if err := json.Unmarshal(buf.Bytes(), &out); err != nil {

	go.uber.org/zap/zapcore
		encoder.go#L223: 		return json.Unmarshal(data, v)

	golang.org/x/tools/go/gcexportdata
		gcexportdata.go#L100: 	json.Unmarshal(out, &data)

	golang.org/x/tools/go/packages
		external.go#L148: 		if err := json.Unmarshal(buf.Bytes(), &response); err != nil {
		packages.go#L651: 	if err := json.Unmarshal(b, &flat); err != nil {

	google.golang.org/grpc
		service_config.go#L177: 	err := json.Unmarshal([]byte(js), &rsc)

	google.golang.org/grpc/balancer/pickfirst
		pickfirst.go#L79: 	if err := json.Unmarshal(js, &cfg); err != nil {

	google.golang.org/grpc/balancer/pickfirst/pickfirstleaf
		pickfirstleaf.go#L130: 	if err := json.Unmarshal(js, &cfg); err != nil {

	google.golang.org/grpc/internal/balancer/gracefulswitch
		config.go#L51: 	if err := json.Unmarshal(cfg, &lbCfg); err != nil {

	google.golang.org/grpc/internal/resolver/dns
		dns_resolver.go#L439: 	err := json.Unmarshal([]byte(js), &rcs)

	google.golang.org/grpc/internal/serviceconfig
		duration.go#L63: 	if err := json.Unmarshal(b, &s); err != nil {
		serviceconfig.go#L76: 	err := json.Unmarshal(b, &ir)

	google.golang.org/protobuf/internal/impl
		legacy_export.go#L42: 		if err := json.Unmarshal(b, &name); err != nil {
		legacy_export.go#L52: 		if err := json.Unmarshal(b, &num); err != nil {