(encoder *Encoder, buf []byte)
| 229 | // Checksum is used to calculate and append checksum data into the raw bytes |
| 230 | type Checksum interface { |
| 231 | encode(encoder *Encoder, buf []byte) ([]byte, error) |
| 232 | } |
| 233 | |
| 234 | // NoChecksum indicates no checksum is encoded into the returned raw bytes. |
no outgoing calls