(data mem.BufferSlice, v any)
| 99 | } |
| 100 | |
| 101 | func (c *errProtoCodec) Unmarshal(data mem.BufferSlice, v any) error { |
| 102 | if c.decodingErr != nil { |
| 103 | return c.decodingErr |
| 104 | } |
| 105 | return encoding.GetCodecV2(proto.Name).Unmarshal(data, v) |
| 106 | } |
| 107 | |
| 108 | func (c *errProtoCodec) Name() string { |
| 109 | return c.name |
nothing calls this directly
no test coverage detected