Crates.io | fixed_pool |
lib.rs | fixed_pool |
version | 0.1.0 |
source | src |
created_at | 2023-12-03 02:00:36.026007 |
updated_at | 2023-12-03 02:00:36.026007 |
description | Fixed-size object pool with ownership and return semantics. |
homepage | |
repository | https://github.com/DouglasDwyer/fixed_pool |
max_upload_size | |
id | 1056572 |
size | 6,353 |
fixed_pool
implements an object pool with a fixed number of items. The items may be borrowed without lifetime restrictions,
are automatically returned to the pool upon drop, and may have customized reset semantics through the use of a trait.