| 263 | func (c *uint64Converter) Zero() protoreflect.Value { return c.def } |
| 264 | |
| 265 | type float32Converter struct { |
| 266 | goType reflect.Type |
| 267 | def protoreflect.Value |
| 268 | } |
| 269 | |
| 270 | func (c *float32Converter) PBValueOf(v reflect.Value) protoreflect.Value { |
| 271 | if v.Type() != c.goType { |
nothing calls this directly
no outgoing calls
no test coverage detected