File tree 2 files changed +8
-0
lines changed
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 45
45
/// Create a JSON deserializer from one of the possible serde_json input
46
46
/// sources.
47
47
///
48
+ /// When reading from a source against which short reads are not efficient, such
49
+ /// as a [`File`], you will want to apply your own buffering because serde_json
50
+ /// will not buffer the input. See [`std::io::BufReader`].
51
+ ///
48
52
/// Typically it is more convenient to use one of these methods instead:
49
53
///
50
54
/// - Deserializer::from_str
Original file line number Diff line number Diff line change @@ -191,6 +191,10 @@ where
191
191
R : io:: Read ,
192
192
{
193
193
/// Create a JSON input source to read from a std::io input stream.
194
+ ///
195
+ /// When reading from a source against which short reads are not efficient, such
196
+ /// as a [`File`], you will want to apply your own buffering because serde_json
197
+ /// will not buffer the input. See [`std::io::BufReader`].
194
198
pub fn new ( reader : R ) -> Self {
195
199
IoRead {
196
200
iter : LineColIterator :: new ( reader. bytes ( ) ) ,
You can’t perform that action at this time.
0 commit comments