codec is a CodecV2 implementation with protobuf. It is the default codec for gRPC.
| 39 | // codec is a CodecV2 implementation with protobuf. It is the default codec for |
| 40 | // gRPC. |
| 41 | type codecV2 struct{} |
| 42 | |
| 43 | func (c *codecV2) Marshal(v any) (data mem.BufferSlice, err error) { |
| 44 | vv := messageV2Of(v) |
nothing calls this directly
no outgoing calls
no test coverage detected