Skip to content

Commit

Permalink
Rollup merge of #129675 - lolbinarycat:bufreader_peek_unsized, r=work…
Browse files Browse the repository at this point in the history
…ingjubilee

allow BufReader::peek to be called on unsized types

#128405
  • Loading branch information
matthiaskrgr committed Aug 31, 2024
2 parents fbf74df + ae6f8a7 commit 10fb626
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions library/std/src/io/buffered/bufreader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ impl<R: Read> BufReader<R> {
pub fn with_capacity(capacity: usize, inner: R) -> BufReader<R> {
BufReader { inner, buf: Buffer::with_capacity(capacity) }
}
}

impl<R: Read + ?Sized> BufReader<R> {
/// Attempt to look ahead `n` bytes.
///
/// `n` must be less than `capacity`.
Expand Down

0 comments on commit 10fb626

Please sign in to comment.