| 311 | func (c *float64Converter) Zero() protoreflect.Value { return c.def } |
| 312 | |
| 313 | type stringConverter struct { |
| 314 | goType reflect.Type |
| 315 | def protoreflect.Value |
| 316 | } |
| 317 | |
| 318 | func (c *stringConverter) PBValueOf(v reflect.Value) protoreflect.Value { |
| 319 | if v.Type() != c.goType { |
nothing calls this directly
no outgoing calls
no test coverage detected