(dec *msgpack.Decoder)
| 19 | } |
| 20 | |
| 21 | func (s *customStruct) DecodeMsgpack(dec *msgpack.Decoder) error { |
| 22 | return dec.DecodeMulti(&s.S, &s.N) |
| 23 | } |
| 24 | |
| 25 | func ExampleCustomEncoder() { |
| 26 | b, err := msgpack.Marshal(&customStruct{S: "hello", N: 42}) |
nothing calls this directly
no test coverage detected