MCPcopy Create free account
hub / github.com/bytecodealliance/wasmtime / instance_get_table

Method instance_get_table

crates/debugger/src/host/opaque.rs:184–187  ·  view source on GitHub ↗
(&mut self, instance: Instance, idx: u32)

Source from the content-addressed store, hash-verified

182 }
183
184 async fn instance_get_table(&mut self, instance: Instance, idx: u32) -> Result<Option<Table>> {
185 self.with_store(move |mut store| instance.debug_table(&mut store, idx))
186 .await
187 }
188
189 async fn instance_get_func(&mut self, instance: Instance, idx: u32) -> Result<Option<Func>> {
190 self.with_store(move |mut store| instance.debug_function(&mut store, idx))

Callers 1

get_tableMethod · 0.80

Calls 2

with_storeMethod · 0.80
debug_tableMethod · 0.80

Tested by

no test coverage detected