ljprsasyncpool

Provides an async-friendly pool data structure using tokio.

Usage Example

```rs use std::io; use ljprsasyncpool::AsyncPool;

async fn initializer_fn() -> Result { Ok(42) }

let pool = AsyncPool::new(16, initializerfn); let guard = pool.get().await; assert!(guard.isok()); assert_eq!(*(guard.unwrap()), 42); ```