| 341 | func (c *stringConverter) Zero() protoreflect.Value { return c.def } |
| 342 | |
| 343 | type bytesConverter struct { |
| 344 | goType reflect.Type |
| 345 | def protoreflect.Value |
| 346 | } |
| 347 | |
| 348 | func (c *bytesConverter) PBValueOf(v reflect.Value) protoreflect.Value { |
| 349 | if v.Type() != c.goType { |
nothing calls this directly
no outgoing calls
no test coverage detected