| commit | e37cdddf8164fccd2fb68cf4b7e914f0dd9655d8 | [log] [tgz] |
|---|---|---|
| author | David Tolnay <dtolnay@gmail.com> | Fri Dec 07 22:44:08 2018 |
| committer | David Tolnay <dtolnay@gmail.com> | Fri Dec 07 22:44:08 2018 |
| tree | e4657b4e0859d3383dd67a8472ae96df27749134 | |
| parent | 49e544e90eafe25fc89b0839ebfa7b8095192687 [diff] |
Add a note about buffering in from_reader
diff --git a/src/de.rs b/src/de.rs index e85f3b0..28c89b8 100644 --- a/src/de.rs +++ b/src/de.rs
@@ -2121,6 +2121,9 @@ /// Deserialize an instance of type `T` from an IO stream of JSON. /// +/// The content of the IO stream is deserialized directly from the stream +/// without being buffered in memory by serde_json. +/// /// # Example /// /// ```rust