Trait wasmedge_sdk::WasmValTypeList
source · pub trait WasmValTypeListwhere
Self: Sized,{
type Array: AsMut<[i128]>;
// Required method
fn wasm_types() -> &'static [ValType];
}
Expand description
Describes the mapping of a tuple of Rust types to Wasm types.
use wasmedge_sdk::{FuncRef, types::ExternRef, ValType, WasmValTypeList};
assert_eq!(
<(i32, i64, f32, f64, FuncRef, ExternRef)>::wasm_types(),
[ValType::I32, ValType::I64, ValType::F32, ValType::F64, ValType::FuncRef, ValType::ExternRef]
);
Required Associated Types§
Required Methods§
sourcefn wasm_types() -> &'static [ValType]
fn wasm_types() -> &'static [ValType]
Get the Wasm types for the tuple (list) of currently represented values.
Object Safety§
This trait is not object safe.