feature. See also
. The project being documented here (as the example) is the Zig library itself.
Progress.global_progress
var global_progress: Progress = .
File
Code
var global_progress: Progress = .{
.io = undefined,
.terminal = undefined,
.terminal_mode = .off,
.update_worker = null,
.redraw_event = .unset,
.refresh_rate_ns = undefined,
.initial_delay_ns = undefined,
.rows = 0,
.cols = 0,
.draw_buffer = undefined,
.need_clear = false,
.status = .working,
.node_parents = undefined,
.node_storage = undefined,
.node_freelist_next = undefined,
.node_freelist = .{ .head = .none, .generation = 0 },
.node_end_index = 0,
.ipc_next = 0,
.ipc = undefined,
.ipc_files = undefined,
.start_failure = .unstarted,
}