(data mem.BufferSlice, v any)
| 281 | } |
| 282 | |
| 283 | func (p *countingProtoCodec) Unmarshal(data mem.BufferSlice, v any) error { |
| 284 | atomic.AddInt32(&p.unmarshalCount, 1) |
| 285 | return encoding.GetCodecV2(proto.Name).Unmarshal(data, v) |
| 286 | } |
| 287 | |
| 288 | func (p *countingProtoCodec) Name() string { |
| 289 | return p.name |
nothing calls this directly
no test coverage detected