(fd: Fd, bufs: &[IoSlice<'_>], offset: u64)
| 264 | )))] |
| 265 | #[inline] |
| 266 | pub fn pwritev<Fd: AsFd>(fd: Fd, bufs: &[IoSlice<'_>], offset: u64) -> io::Result<usize> { |
| 267 | backend::io::syscalls::pwritev(fd.as_fd(), bufs, offset) |
| 268 | } |
| 269 | |
| 270 | /// `preadv2(fd, bufs, offset, flags)`—Reads data, with several options. |
| 271 | /// |