tiny.zen.AsciiRenderStatus
Defined in tiny.zen.
Observable capacity, current demand, high-water demand, and rejections.
API (16)
Fields and members
Public fields and members.
canvas_bytescategorieshigh_water_canvas_byteshigh_water_categorieshigh_water_output_byteshigh_water_stack_totalsin_usemax_canvas_bytesmax_categoriesmax_output_bytesmax_stack_totalsoutput_bytesphaserejected_render_countstack_totalsstorage_bytes
Source
Source: lib/zen/src/diagram/ascii/storage.zig:18
zig
/// Observable capacity, current demand, high-water demand, and rejections.pub const Status = struct { /// Initialization, steady, or teardown lifecycle phase. phase: alloc_phase.capacity.Phase, /// True while returned output still borrows this storage. in_use: bool, /// Total bytes acquired during initialization. storage_bytes: usize, max_categories: usize, max_stack_totals: usize, max_canvas_bytes: usize, max_output_bytes: usize, categories: usize, stack_totals: usize, canvas_bytes: usize, output_bytes: usize, high_water_categories: usize, high_water_stack_totals: usize, high_water_canvas_bytes: usize, high_water_output_bytes: usize, /// Saturating count of capacity and in-use rejections. rejected_render_count: u64,};Source: lib/zen/src/root.zig:73
zig
/// Reports active, high-water, and rejected ASCII render demand.pub const AsciiRenderStatus = diagram.AsciiRenderStatus;Also reachable as
diagram.AsciiRenderStatus, diagram.ascii.RenderStatus.
Audit
| Definitions | 1 |
|---|---|
| Public names | 3 |
| Members | 16 |
| Version | 26.7.0 |
| Revision | daab053ee433 |