pub type wasm_valkind_t = u8;
Expand description

Represents the kind of values. The variants of this C enum is defined in wasm.h to list the following:

  • WASM_I32, a 32-bit integer,
  • WASM_I64, a 64-bit integer,
  • WASM_F32, a 32-bit float,
  • WASM_F64, a 64-bit float,
  • WASM_ANYREF, a WebAssembly reference,
  • WASM_FUNCREF, a WebAssembly reference.