| 2134 | /// WebAssembly table. |
| 2135 | #[derive(Debug, Clone, Copy, Hash, Eq, PartialEq, Serialize, Deserialize)] |
| 2136 | pub 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 | |
| 2146 | impl TypeTrace for Table { |
| 2147 | fn trace<F, E>(&self, func: &mut F) -> Result<(), E> |
no outgoing calls
no test coverage detected