MCPcopy Create free account
hub / github.com/explodingcamera/tinywasm / copy_within

Method copy_within

crates/tinywasm/src/store/memory/lazy.rs:114–116  ·  view source on GitHub ↗
(&mut self, dst: usize, src: usize, len: usize)

Source from the content-addressed store, hash-verified

112 }
113
114 fn copy_within(&mut self, dst: usize, src: usize, len: usize) -> Option<()> {
115 self.with_inner_mut(|inner| inner.copy_within(dst, src, len))
116 }
117
118 fn read_exact(&self, addr: usize, dst: &mut [u8]) -> Option<()> {
119 self.with_inner(|inner| inner.read_exact(addr, dst))

Callers

nothing calls this directly

Calls 1

with_inner_mutMethod · 0.80

Tested by

no test coverage detected