Module stable_vec::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§

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

Traits§

  • The core of a stable vector.

Type Aliases§

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