pseudo_pool 0.1.1

A pool-like collection that automatically returns objects to the pool & blocks when the pool is empty
Documentation
1
2
3
4
5
6
7
8
#![doc = include_str!("../README.md")]

mod error;
mod pool;

pub use error::{PseudoPoolError as Error, Result};
pub use pool::ExternalPoolEntry as PoolEntry;
pub use pool::Pool;