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

Class Table

crates/environ/src/types.rs:2136–2144  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2134/// WebAssembly table.
2135#[derive(Debug, Clone, Copy, Hash, Eq, PartialEq, Serialize, Deserialize)]
2136pub struct Table {
2137 /// The type of the index used to access the table.
2138 pub idx_type: IndexType,
2139 /// Tables are constrained by limits for their minimum and optionally maximum size.
2140 /// The limits are given in numbers of entries.
2141 pub limits: Limits,
2142 /// The table elements' Wasm type.
2143 pub ref_type: WasmRefType,
2144}
2145
2146impl TypeTrace for Table {
2147 fn trace<F, E>(&self, func: &mut F) -> Result<(), E>

Callers 7

type_ofMethod · 0.70
fromMethod · 0.70
tableMethod · 0.70
entity_typeMethod · 0.50
translate_payloadMethod · 0.50
push_typeMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected