(fd: Fd, bufs: &[IoSlice<'_>])
| 190 | #[cfg(not(any(windows, target_os = "espidf", target_os = "horizon")))] |
| 191 | #[inline] |
| 192 | pub fn writev<Fd: AsFd>(fd: Fd, bufs: &[IoSlice<'_>]) -> io::Result<usize> { |
| 193 | backend::io::syscalls::writev(fd.as_fd(), bufs) |
| 194 | } |
| 195 | |
| 196 | /// `preadv(fd, bufs, offset)`—Reads from a file at a given position into |
| 197 | /// multiple buffers. |