enumstd.wasm.RefType[src]

Reference types, where the funcref references to a function regardless of its type and ref references an object from the embedder.

Fields

funcref = 0x70
externref = 0x6F

Source Code

Source code
pub const RefType = enum(u8) {
    funcref = 0x70,
    externref = 0x6F,
}