UnmarshalNext unmarshals the next JSON object from d into m.
(d *json.Decoder, m proto.Message)
| 26 | |
| 27 | // UnmarshalNext unmarshals the next JSON object from d into m. |
| 28 | func UnmarshalNext(d *json.Decoder, m proto.Message) error { |
| 29 | return new(Unmarshaler).UnmarshalNext(d, m) |
| 30 | } |
| 31 | |
| 32 | // Unmarshal unmarshals a JSON object from r into m. |
| 33 | func Unmarshal(r io.Reader, m proto.Message) error { |
nothing calls this directly
no test coverage detected