(dec *msgpack.Decoder)
| 106 | } |
| 107 | |
| 108 | func (s *CustomEncoder) DecodeMsgpack(dec *msgpack.Decoder) error { |
| 109 | return dec.DecodeMulti(&s.str, &s.ref, &s.num) |
| 110 | } |
| 111 | |
| 112 | type CustomEncoderField struct { |
| 113 | Field CustomEncoder |
nothing calls this directly
no test coverage detected