Skip to documentation
SLOP

tiny.zen.AsciiRenderStatus

Reference 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.

No direct callersNo direct callstiny.zenAsciiRenderStatus
Static calls · unresolved targets: unknown · external targets: unknown.

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

Definitions1
Public names3
Members16
Version26.7.0
Revisiondaab053ee433