google.golang.org/protobuf/reflect/protoreflect.Value.String (method)

23 uses

	google.golang.org/protobuf/reflect/protoreflect (current package)
		value_union.go#L191: 		return v.String()
		value_union.go#L285: func (v Value) String() string {
		value_union.go#L405: 	return Value(k).String()

	google.golang.org/protobuf/encoding/protojson
		encode.go#L245: 		if e.WriteString(val.String()) != nil {
		encode.go#L258: 		e.WriteString(val.String())
		well_known_types.go#L127: 	typeURL := typeVal.String()
		well_known_types.go#L844: 		s := list.Get(i).String()

	google.golang.org/protobuf/encoding/prototext
		encode.go#L234: 		s := val.String()
		encode.go#L403: 	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#L5202: 	return tagsize + protowire.SizeBytes(len(v.String()))
		codec_gen.go#L5208: 	b = protowire.AppendString(b, v.String())
		codec_gen.go#L5235: 	b = protowire.AppendString(b, v.String())
		codec_gen.go#L5236: 	if !utf8.ValidString(v.String()) {
		codec_gen.go#L5270: 		size += tagsize + protowire.SizeBytes(len(v.String()))
		codec_gen.go#L5281: 		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()))

	github.com/golang/protobuf/proto
		text_encode.go#L226: 	url := m.Get(fdURL).String()
		text_encode.go#L313: 					return entries[i].key.String() < entries[j].key.String()
		text_encode.go#L369: 		w.writeQuotedString(string(v.String()))