pub type InlineTimerWheel = Wheel<FlatVirtual<Instant, B256>>;Expand description
Type alias for a timer wheel using inline handler storage.
B256 = 256-byte inline buffer. Panics if a handler doesn’t fit. Realistic timer callbacks (0-2 resources + context) are 24-96 bytes (ResourceId is pointer-sized: 8 bytes per resource param, plus 16 bytes base overhead, plus context size). B256 provides comfortable headroom without a cache-line penalty over B128 (SIMD memcpy).
Aliased Type§
pub struct InlineTimerWheel { /* private fields */ }