You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nnet/serialize/serializer.go

20 lines
341 B
Go

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package serialize
type (
// Marshaler 序列化
Marshaler interface {
Marshal(v interface{}) ([]byte, error)
}
// Unmarshaler 反序列化
Unmarshaler interface {
Unmarshal(data []byte, v interface{}) error
}
// Serializer 消息 序列化/反序列化仅针对payload
Serializer interface {
Marshaler
Unmarshaler
}
)