pub trait TypeConvert {
    // Required method
    fn lookup_heap_type(&self, index: TypeIndex) -> WasmHeapType;

    // Provided methods
    fn convert_global_type(&self, ty: &GlobalType) -> Global { ... }
    fn convert_table_type(&self, ty: &TableType) -> Table { ... }
    fn convert_func_type(&self, ty: &FuncType) -> WasmFuncType { ... }
    fn convert_valtype(&self, ty: ValType) -> WasmType { ... }
    fn convert_ref_type(&self, ty: RefType) -> WasmRefType { ... }
    fn convert_heap_type(&self, ty: HeapType) -> WasmHeapType { ... }
}
Expand description

Helpers used to convert a wasmparser type to a type in this crate.

Required Methods§

source

fn lookup_heap_type(&self, index: TypeIndex) -> WasmHeapType

Converts the specified type index from a heap type into a canonicalized heap type.

Provided Methods§

source

fn convert_global_type(&self, ty: &GlobalType) -> Global

Converts a wasmparser table type into a wasmtime type

source

fn convert_table_type(&self, ty: &TableType) -> Table

Converts a wasmparser table type into a wasmtime type

source

fn convert_func_type(&self, ty: &FuncType) -> WasmFuncType

Converts a wasmparser function type to a wasmtime type

source

fn convert_valtype(&self, ty: ValType) -> WasmType

Converts a wasmparser value type to a wasmtime type

source

fn convert_ref_type(&self, ty: RefType) -> WasmRefType

Converts a wasmparser reference type to a wasmtime type

source

fn convert_heap_type(&self, ty: HeapType) -> WasmHeapType

Converts a wasmparser heap type to a wasmtime type

Implementors§

source§

impl TypeConvert for DummyEnvironment

source§

impl<'dummy_environment> TypeConvert for DummyFuncEnvironment<'dummy_environment>