MCPcopy Create free account
hub / github.com/golang/appengine / rawMessage

Struct rawMessage

remote_api/remote_api.go:124–126  ·  view source on GitHub ↗

rawMessage is a protocol buffer type that is already serialised. This allows the remote_api code here to handle messages without having to know the real type.

Source from the content-addressed store, hash-verified

122// This allows the remote_api code here to handle messages
123// without having to know the real type.
124type rawMessage struct {
125 buf []byte
126}
127
128func (rm *rawMessage) Marshal() ([]byte, error) {
129 return rm.buf, nil

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected