pub fn take_t<T: Any + Poolable + Send + 'static>(
size: usize,
max: usize,
) -> Pooled<T>Expand description
Take a poolable type T from the generic thread local pool set. Note it is much more efficient to construct your own pools. size and max are the pool parameters used if the pool doesn’t already exist.