pub fn pwritev(
    fd: i32,
    iov: &[IoSlice<'_>],
    offset: i64
) -> Result<usize, Errno>
Expand description

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