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.
- Fixed
Vec - A fixed vector,
FixedVec
, is a vector with a strict predetermined capacity (seeSplitVec
for dynamic capacity version). - Linear
- Strategy which allows the split vector to grow linearly.
- Recursive
- Equivalent to
Doubling
strategy except for the following: - Split
Vec - A split vector consisting of a vector of fragments.