pub const MAX_SIMULATED_CAPACITY: u32 = _; // 1_048_576u32Expand description
模拟模式([RingStorage::Simulated])环容量硬上限(2^20 = 1M 项)
Simulated 模式的 descriptors 为真实堆分配(16B × capacity = ≤ 16 MiB);
不设上限时调用方可请求 2^31 项(32 GiB)触发 OOM abort(vec! 分配失败
走 alloc_error_handler 直接 abort,Fail-Closed 无法返回错误)。