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§
- BitVec
Core - A
Core
implementation that is conceptually aBitVec
and aVec<T>
. - Option
Core - A
Core
implementation that is essentially aVec<Option<T>>
.
Traits§
- Core
- The core of a stable vector.
Type Aliases§
- Default
Core - The default core implementation of the stable vector. Fine in most situations.