Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

ExternalKind

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

wasm.ExternalKind
pub const ExternalKind = enum(u8)

File

lib/std/wasm.zig:629

Code

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