pub unsafe fn from_reader_unchecked<R: Read, T: DeserializeOwned>(
rdr: R,
) -> Result<T>Available on crate feature
serde only.Expand description
Deserializes specified type from a streaming source.
Same as from_reader but will not perform UTF-8 validation.