Module core

Source
Expand description

Core trait definition and implementations.

There are multiple ways to implement the “stable vector” interface, each with different performance characteristics. The Core is this implementation, making the stable vector work. See Core for more information.

Structs§

BitVecCore
A Core implementation that is conceptually a BitVec and a Vec<T>.
OptionCore
A Core implementation that is essentially a Vec<Option<T>>.

Traits§

Core
The core of a stable vector.

Type Aliases§

DefaultCore
The default core implementation of the stable vector. Fine in most situations.