Body is an interface for zebra messages.
| 1783 | |
| 1784 | // Body is an interface for zebra messages. |
| 1785 | type Body interface { |
| 1786 | decodeFromBytes([]byte, uint8, Software) error |
| 1787 | serialize(uint8, Software) ([]byte, error) |
| 1788 | string(uint8, Software) string |
| 1789 | } |
| 1790 | |
| 1791 | type unknownBody struct { |
| 1792 | Data []byte |
no outgoing calls
no test coverage detected
searching dependent graphs…