pub fn pwritev(fd: RawFd, iov: &[IoVec<&[u8]>], offset: off_t) -> Result<usize>
The portability is definied by: #[cfg(not(target_os = "redox"))]
Documentation
Write to fd
at offset
from buffers in iov
.
Buffers in iov
will be written in order until all buffers have been written
or an error occurs. The file offset is not changed.
See also: writev
and pwrite