UnixStream
: override read_buf
This commit is contained in:
parent
73476d4990
commit
bff13e98ad
1 changed files with 8 additions and 0 deletions
|
@ -580,6 +580,10 @@ impl io::Read for UnixStream {
|
|||
io::Read::read(&mut &*self, buf)
|
||||
}
|
||||
|
||||
fn read_buf(&mut self, buf: io::BorrowedCursor<'_>) -> io::Result<()> {
|
||||
io::Read::read_buf(&mut &*self, buf)
|
||||
}
|
||||
|
||||
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> io::Result<usize> {
|
||||
io::Read::read_vectored(&mut &*self, bufs)
|
||||
}
|
||||
|
@ -596,6 +600,10 @@ impl<'a> io::Read for &'a UnixStream {
|
|||
self.0.read(buf)
|
||||
}
|
||||
|
||||
fn read_buf(&mut self, buf: io::BorrowedCursor<'_>) -> io::Result<()> {
|
||||
self.0.read_buf(buf)
|
||||
}
|
||||
|
||||
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> io::Result<usize> {
|
||||
self.0.read_vectored(bufs)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue