(fd: Fd, bufs: &mut [IoSliceMut<'_>])
| 162 | #[cfg(not(any(windows, target_os = "espidf", target_os = "horizon")))] |
| 163 | #[inline] |
| 164 | pub fn readv<Fd: AsFd>(fd: Fd, bufs: &mut [IoSliceMut<'_>]) -> io::Result<usize> { |
| 165 | backend::io::syscalls::readv(fd.as_fd(), bufs) |
| 166 | } |
| 167 | |
| 168 | /// `writev(fd, bufs)`—Writes to a stream from multiple buffers. |
| 169 | /// |