Enum representing all Wasm value types as per spec: https://webassembly.github.io/spec/core/binary/types.html
pub const Valtype = enum(u8)
pub const Valtype = enum(u8) { i32 = 0x7F, i64 = 0x7E, f32 = 0x7D, f64 = 0x7C, v128 = 0x7B, }