pub fn decode_from_reader<D: Decode, R: Reader, C: Config>(
    reader: R,
    config: C
) -> Result<D, DecodeError>
Expand description

Attempt to decode a given type D from the given Reader.

See the config module for more information on configurations.