pub fn twz_rt_fd_pwritev(
fd: RawFd,
offset: Option<u64>,
ios: &[IoSlice],
flags: IoFlags,
) -> Result<usize, IoError>
Expand description
Write multiple buffers into a file descriptor. On success, returns the number of bytes actually written, which may be fewer than requested. If offset is None, use the file descriptor’s internal position. If the file descriptor refers to a non-seekable file, and offset is Some, this function returns an error.