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

Method into_table

crates/wasmtime/src/runtime/externals.rs:67–72  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

65 /// Returns `None` if this is not a table.
66 #[inline]
67 pub fn into_table(self) -> Option<Table> {
68 match self {
69 Extern::Table(table) => Some(table),
70 _ => None,
71 }
72 }
73
74 /// Returns the underlying `Memory`, if this external is a memory.
75 ///

Callers 3

get_tableMethod · 0.80
debug_tableMethod · 0.80
make_api_callsFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected