google.golang.org/protobuf/reflect/protoreflect.Value.String (method, view implemented interface methods)

21 uses

	google.golang.org/protobuf/reflect/protoreflect (current package)
		value_equal.go#L59: 		return eqType && x.String() == y.String()
		value_union.go#L217: 		return v.String()
		value_union.go#L311: func (v Value) String() string {
		value_union.go#L432: 	return Value(k).String()

	google.golang.org/protobuf/encoding/protojson
		encode.go#L301: 		if e.WriteString(val.String()) != nil {
		encode.go#L314: 		e.WriteString(val.String())
		well_known_types.go#L126: 	typeURL := typeVal.String()
		well_known_types.go#L839: 		s := list.Get(i).String()

	google.golang.org/protobuf/encoding/prototext
		encode.go#L223: 		s := val.String()
		encode.go#L350: 	typeURL := any.Get(fdType).String()

	google.golang.org/protobuf/internal/encoding/defval
		default.go#L165: 		return v.String(), nil

	google.golang.org/protobuf/internal/impl
		codec_gen.go#L5289: 	return tagsize + protowire.SizeBytes(len(v.String()))
		codec_gen.go#L5295: 	b = protowire.AppendString(b, v.String())
		codec_gen.go#L5322: 	b = protowire.AppendString(b, v.String())
		codec_gen.go#L5323: 	if !utf8.ValidString(v.String()) {
		codec_gen.go#L5357: 		size += tagsize + protowire.SizeBytes(len(v.String()))
		codec_gen.go#L5368: 		b = protowire.AppendString(b, v.String())

	google.golang.org/protobuf/proto
		encode_gen.go#L71: 		if strs.EnforceUTF8(fd) && !utf8.ValidString(v.String()) {
		encode_gen.go#L74: 		b = protowire.AppendString(b, v.String())
		size_gen.go#L45: 		return protowire.SizeBytes(len(v.String()))