pub fn read_value<R>(rd: &mut R) -> Result<Value, Error>
where R: Read,
Expand description

Attempts to read bytes from the given reader and interpret them as a Value.

§Errors

This function will return Error on any I/O error while either reading or decoding a Value. All instances of ErrorKind::Interrupted are handled by this function and the underlying operation is retried.

Error::DepthLimitExceeded is returned if this function recurses MAX_DEPTH times. To configure the maximum recursion depth, use read_value_with_max_depth instead.