Skip to content

Commit 2164460

Browse files
committed
Fill in Read::read_buf for &Stdin
1 parent a9c2c57 commit 2164460

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

library/std/src/io/stdio.rs

+3
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,9 @@ impl Read for &Stdin {
450450
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
451451
self.lock().read(buf)
452452
}
453+
fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> io::Result<()> {
454+
self.lock().read_buf(buf)
455+
}
453456
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> io::Result<usize> {
454457
self.lock().read_vectored(bufs)
455458
}

0 commit comments

Comments
 (0)