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

Method read_128

crates/tinywasm/src/store/memory/lazy.rs:142–144  ·  view source on GitHub ↗
(&self, base: u64, offset: u64)

Source from the content-addressed store, hash-verified

140 }
141
142 fn read_128(&self, base: u64, offset: u64) -> core::result::Result<[u8; 16], crate::Trap> {
143 self.try_with_inner(|inner| inner.read_128(base, offset))?
144 }
145
146 fn write_8(&mut self, base: u64, offset: u64, byte: u8) -> core::result::Result<(), crate::Trap> {
147 self.try_with_inner_mut(|inner| inner.write_8(base, offset, byte))?

Callers

nothing calls this directly

Calls 1

try_with_innerMethod · 0.80

Tested by

no test coverage detected