We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 600edc9 commit ae6f8a7Copy full SHA for ae6f8a7
library/std/src/io/buffered/bufreader.rs
@@ -94,7 +94,9 @@ impl<R: Read> BufReader<R> {
94
pub fn with_capacity(capacity: usize, inner: R) -> BufReader<R> {
95
BufReader { inner, buf: Buffer::with_capacity(capacity) }
96
}
97
+}
98
99
+impl<R: Read + ?Sized> BufReader<R> {
100
/// Attempt to look ahead `n` bytes.
101
///
102
/// `n` must be less than `capacity`.
0 commit comments