mirror of
https://github.com/safing/structures
synced 2025-04-04 17:39:12 +00:00
9 lines
411 B
Go
9 lines
411 B
Go
package dsd
|
|
|
|
// GenCodeCompatible is an interface to identify and use gencode compatible structs.
|
|
type GenCodeCompatible interface {
|
|
// GenCodeMarshal gencode marshalls the struct into the given byte array, or a new one if its too small.
|
|
GenCodeMarshal(buf []byte) ([]byte, error)
|
|
// GenCodeUnmarshal gencode unmarshalls the struct and returns the bytes read.
|
|
GenCodeUnmarshal(buf []byte) (uint64, error)
|
|
}
|