Convert into serialized byte stream.
(interface{})
| 24 | type Encoder interface { |
| 25 | // Convert into serialized byte stream. |
| 26 | Encode(interface{}) []byte |
| 27 | |
| 28 | // Read byte stream and convert it back to typed data. |
| 29 | Decode([]byte) (int, interface{}) |
no outgoing calls