Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit bf50e61

Browse files
committedJan 28, 2025··
Add more warnings to apply buffering on docs of affected functions
1 parent 65bbd1a commit bf50e61

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed
 

‎src/de.rs

+4
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ where
4545
/// Create a JSON deserializer from one of the possible serde_json input
4646
/// sources.
4747
///
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+
///
4852
/// Typically it is more convenient to use one of these methods instead:
4953
///
5054
/// - Deserializer::from_str

‎src/read.rs

+4
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,10 @@ where
191191
R: io::Read,
192192
{
193193
/// 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`].
194198
pub fn new(reader: R) -> Self {
195199
IoRead {
196200
iter: LineColIterator::new(reader.bytes()),

0 commit comments

Comments
 (0)
Please sign in to comment.