Skip to main content

subms_arena_allocator/features/
mod.rs

1//! Opt-in feature catalog. Each submodule is gated by its own Cargo
2//! feature flag and adds a specific capability to the base bump arena
3//! without bloating the core build.
4//!
5//! See `Cargo.toml` `[features]` for the catalog + the cookbook page
6//! for the per-feature p99 + memory cost + use cases.
7
8#[cfg(feature = "typed")]
9pub mod typed;
10
11#[cfg(feature = "growable")]
12pub mod growable;
13
14#[cfg(feature = "stats")]
15pub mod stats;
16
17#[cfg(feature = "aligned")]
18pub mod aligned;