Type Alias PtrSlab

Source
pub type PtrSlab<T> = Slab<T, NonZeroIndex<usize>>;
Expand description

A slab arena which can hold up to std::usize::MAX - 1 elements but does not support element removal, and has size optimized optional indices

Aliased Typeยง

struct PtrSlab<T> { /* private fields */ }