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

Method read_64

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

Source from the content-addressed store, hash-verified

136 }
137
138 fn read_64(&self, base: u64, offset: u64) -> core::result::Result<[u8; 8], crate::Trap> {
139 self.try_with_inner(|inner| inner.read_64(base, offset))?
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))?

Callers

nothing calls this directly

Calls 1

try_with_innerMethod · 0.80

Tested by

no test coverage detected