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
Coreimplementation that is conceptually aBitVecand aVec<T>. - Option
Core - A
Coreimplementation 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.