pub type Slot<LEN, T> = (NonZero<usize>, LEN, T);
One slot of the sparse index: the buf offset (>= 1; buf[0] is the dummy byte), the key length, and the value inline. None slots are gaps.
index
None