(&self, buf: &mut [u8])
| 216 | |
| 217 | #[inline] |
| 218 | fn read_exact(&self, buf: &mut [u8]) -> io::Result<()> { |
| 219 | Read::read_exact(&mut &*self.as_filelike_view::<std::fs::File>(), buf) |
| 220 | } |
| 221 | |
| 222 | #[inline] |
| 223 | fn read_vectored(&self, bufs: &mut [IoSliceMut]) -> io::Result<usize> { |