devela::_dep::rustix::io

Function pwritev2

pub fn pwritev2<Fd>(
    fd: Fd,
    bufs: &[IoSlice<'_>],
    offset: u64,
    flags: ReadWriteFlags,
) -> Result<usize, Errno> 
where Fd: AsFd,
Available on crate feature dep_rustix only.
Expand description

pwritev2(fd, bufs, offset, flags)—Writes data, with several options.

An offset of u64::MAX means to use and update the current file offset.

§References