extern structstd.Build.Fuzz.abi.EntryPointHeader[src]

Sent to the fuzzer web client when the set of entry points is updated.

Trailing:

  • one u32 index of source_locations per locs_len

Fields

flags: Flags

Source Code

Source code
pub const EntryPointHeader = extern struct {
    flags: Flags,

    pub const Flags = packed struct(u32) {
        tag: ToClientTag = .entry_points,
        locs_len: u24,
    };
}