enumstd.wasm.ExternalKind[src]

The kind of the type when importing or exporting to/from the host environment. https://webassembly.github.io/spec/core/syntax/modules.html

Fields

function
table
memory
global

Source Code

Source code
pub const ExternalKind = enum(u8) {
    function,
    table,
    memory,
    global,
}