Skip to content

Commit 57557c9

Browse files
committed
Add a comment to Read::read_buf
1 parent 4a11249 commit 57557c9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

std/src/io/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -978,6 +978,8 @@ pub trait Read {
978978
/// with uninitialized buffers. The new data will be appended to any existing contents of `buf`.
979979
///
980980
/// The default implementation delegates to `read`.
981+
///
982+
/// This method makes it possible to return both data and an error but it is advised against.
981983
#[unstable(feature = "read_buf", issue = "78485")]
982984
fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<()> {
983985
default_read_buf(|b| self.read(b), buf)

0 commit comments

Comments
 (0)