sector 0.1.21

A stateful vector implementation that provides different memory management behaviors through Rust traits and state machines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod dynamic;
mod fixed;
mod locked;
mod manual;
mod normal;
mod tight;
mod transitions;

pub use dynamic::Dynamic;
pub use fixed::Fixed;
pub use locked::Locked;
pub use manual::Manual;
pub use normal::Normal;
pub use tight::Tight;