pub fn from_reader<R, T>(reader: R) -> Result<T, Error> where
    R: Read,
    T: for<'de> Deserialize<'de>, 
Expand description

Deserializes a value from a reader providing the binary representation.

This function does not perform buffering.