(fd: Fd, bufs: &mut [IoSliceMut<'_>], offset: u64)
| 225 | )))] |
| 226 | #[inline] |
| 227 | pub fn preadv<Fd: AsFd>(fd: Fd, bufs: &mut [IoSliceMut<'_>], offset: u64) -> io::Result<usize> { |
| 228 | backend::io::syscalls::preadv(fd.as_fd(), bufs, offset) |
| 229 | } |
| 230 | |
| 231 | /// `pwritev(fd, bufs, offset)`—Writes to a file at a given position from |
| 232 | /// multiple buffers. |