MCPcopy Create free account
hub / github.com/bytecodealliance/system-interface / write_all_vectored_at

Method write_all_vectored_at

src/fs/file_io_ext.rs:733–739  ·  view source on GitHub ↗
(&self, bufs: &mut [IoSlice], mut offset: u64)

Source from the content-addressed store, hash-verified

731
732 #[inline]
733 fn write_all_vectored_at(&self, bufs: &mut [IoSlice], mut offset: u64) -> io::Result<()> {
734 for buf in bufs {
735 self.write_all_at(buf, offset)?;
736 offset += u64::try_from(buf.len()).unwrap();
737 }
738 Ok(())
739 }
740
741 #[inline]
742 fn is_write_vectored_at(&self) -> bool {

Callers

nothing calls this directly

Calls 1

write_all_atMethod · 0.45

Tested by

no test coverage detected