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.

Msg

Fuzz.Msg
const Msg = union(enum)

File

Code

const Msg = union(enum) {
    coverage: struct {
        id: u64,
        cumulative: struct {
            runs: u64,
            unique: u64,
            coverage: u64,
        },
        run: Configuration.Step.Index,
    },
    entry_point: struct {
        coverage_id: u64,
        addr: u64,
    },
}