pub const MAX_RING_COUNT: u32 = 512;Expand description
The largest count one ring may declare, enforced at load.
A ceiling rather than a raw u32 because count is the one ring key that
multiplies work: at 512 copies even the roster’s densest motif is 18 432
segments, which already reaches the floor tier’s cap on its own, so anything
above this can only buy truncation. Validated at the boundary (an out-of-range
count is a load error) rather than clamped, because a preset asking for 4 000
copies has misunderstood something and should be told.