ref: fb9eb058f1c9b7cb26f33bbe679a85f530566641
dir: /network/protocol/pktline/frame.go/
package pktline
// Frame is one decoded pkt-line frame.
//
// For PacketData, Payload holds frame bytes (possibly empty for 0004).
// For control frames, Payload is nil.
type Frame struct {
Type PacketType
Payload []byte
}