(
engine: &Engine,
params: impl Iterator<Item = ValType>,
)
| 1711 | } |
| 1712 | |
| 1713 | fn func_type( |
| 1714 | engine: &Engine, |
| 1715 | params: impl Iterator<Item = ValType>, |
| 1716 | ) -> Result<FuncType, OutOfMemory> { |
| 1717 | FuncType::try_new(engine, params, Some(<Self as WasmTy>::valtype())) |
| 1718 | } |
| 1719 | |
| 1720 | fn into_fallible(self) -> Result<T> { |
| 1721 | Ok(self) |