secbuf 0.1.7

Secure, high-performance buffer management with automatic memory zeroing and aggressive cleanup
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// src/pool/mod.rs
//! Buffer pool implementation with multiple modes.

pub(crate) mod config;
pub(crate) mod fast;
pub(crate) mod standard;
pub(crate) mod stats;

pub use config::PoolConfig;
pub use fast::{FastBufferPool, FastPooledBuffer};
pub use standard::{BufferPool, PooledBuffer};
pub use stats::{FastPoolStats, PoolStats};