MCPcopy Create free account
hub / github.com/ZettaScaleLabs/hiroz / DeserializeCDR

Method DeserializeCDR

crates/hiroz-go/testdata/string_msg.go:53–56  ·  view source on GitHub ↗

DeserializeCDR deserializes CDR data into the message

(data []byte)

Source from the content-addressed store, hash-verified

51
52// DeserializeCDR deserializes CDR data into the message
53func (m *String) DeserializeCDR(data []byte) error {
54 // CDR deserialization is performed directly in Go
55 return m.unpackFromRaw(data)
56}
57
58func (m *String) unpackFromRaw(data []byte) error {
59 offset := 0

Callers 7

mainFunction · 0.95
mainFunction · 0.95

Calls 1

unpackFromRawMethod · 0.95