pool 0.1.2

A pool of reusable values
docs.rs failed to build pool-0.1.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: pool-0.1.4

A pool of reusable values

A Rust library providing a pool structure for managing reusable values. All values in the pool are initialized when the pool is created. Values can be checked out from the pool at any time. When the checked out value goes out of scope, the value is returned to the pool and made available for checkout at a later time.

Build Status

Usage

To use pool, first add this to your Cargo.toml:

[dependencies]
pool = "0.1.1"

Then, add this to your crate root:

extern crate pool;

Features

  • Simple
  • Lock-free: values can be returned to the pool across threads
  • Stores typed values and / or slabs of memory