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.

PROT

emscripten.PROT
pub const PROT = packed struct(u32)

File

lib/std/os/emscripten.zig:318

Code

pub const PROT = packed struct(u32) {
    READ: bool = false,
    WRITE: bool = false,
    EXEC: bool = false,
    _: u21 = 0,
    GROWSDOWN: bool = false,
    GROWSUP: bool = false,
    __: u6 = 0,
}