Decode decodes encoded value from the input stream into v.
(v interface{})
| 55 | type Decoder interface { |
| 56 | // Decode decodes encoded value from the input stream into v. |
| 57 | Decode(v interface{}) error |
| 58 | } |
| 59 | |
| 60 | // ContentTypeDecoder decodes the encoded data from r based on the Content-Type header value |
no outgoing calls