Module prelude

Source
Expand description

Common structs, enums and traits.

Re-exports§

pub use crate::*;

Structs§

Doubling
Strategy which allows creates a fragment with double the capacity of the prior fragment every time the split vector needs to expand.
FixedVec
A fixed vector, FixedVec, is a vector with a strict predetermined capacity (see SplitVec for dynamic capacity version).
Linear
Strategy which allows the split vector to grow linearly.
Recursive
Equivalent to Doubling strategy except for the following:
SplitVec
A split vector consisting of a vector of fragments.

Traits§

Growth
Growth strategy of a split vector.
PinnedVec
Trait for vector representations differing from std::vec::Vec by the following: