| 54 | ) |
| 55 | |
| 56 | type GencodeType interface { |
| 57 | Marshal(buf []byte) ([]byte, error) |
| 58 | Unmarshal(buf []byte) (uint64, error) |
| 59 | Size() (s uint64) |
| 60 | } |
| 61 | |
| 62 | func init() { |
| 63 | // "Only types that will be transferred as implementations of interface values need to be registered." |
no outgoing calls
no test coverage detected