baishaojie dcf2cbd820 first commit | 11 ماه پیش | |
---|---|---|
.. | ||
msgpcode | 11 ماه پیش | |
.prettierrc | 11 ماه پیش | |
.travis.yml | 11 ماه پیش | |
CHANGELOG.md | 11 ماه پیش | |
LICENSE | 11 ماه پیش | |
Makefile | 11 ماه پیش | |
README.md | 11 ماه پیش | |
commitlint.config.js | 11 ماه پیش | |
decode.go | 11 ماه پیش | |
decode_map.go | 11 ماه پیش | |
decode_number.go | 11 ماه پیش | |
decode_query.go | 11 ماه پیش | |
decode_slice.go | 11 ماه پیش | |
decode_string.go | 11 ماه پیش | |
decode_value.go | 11 ماه پیش | |
encode.go | 11 ماه پیش | |
encode_map.go | 11 ماه پیش | |
encode_number.go | 11 ماه پیش | |
encode_slice.go | 11 ماه پیش | |
encode_value.go | 11 ماه پیش | |
ext.go | 11 ماه پیش | |
go.mod | 11 ماه پیش | |
go.sum | 11 ماه پیش | |
intern.go | 11 ماه پیش | |
msgpack.go | 11 ماه پیش | |
package.json | 11 ماه پیش | |
safe.go | 11 ماه پیش | |
time.go | 11 ماه پیش | |
types.go | 11 ماه پیش | |
unsafe.go | 11 ماه پیش | |
version.go | 11 ماه پیش |
:heart: Uptrace.dev - All-in-one tool to optimize performance and monitor errors & logs
Other projects you may like:
msgpack:"my_field_name"
and alias via msgpack:"alias:another_name"
.msgpack:",omitempty"
tag or all
empty fields in a struct.msgpack supports 2 last Go versions and requires support for Go modules. So make sure to initialize a Go module:
go mod init github.com/my/repo
And then install msgpack/v5 (note v5 in the import; omitting it is a popular mistake):
go get github.com/vmihailenco/msgpack/v5
import "github.com/vmihailenco/msgpack/v5"
func ExampleMarshal() {
type Item struct {
Foo string
}
b, err := msgpack.Marshal(&Item{Foo: "bar"})
if err != nil {
panic(err)
}
var item Item
err = msgpack.Unmarshal(b, &item)
if err != nil {
panic(err)
}
fmt.Println(item.Foo)
// Output: bar
}