Trait PoolManager
syncpool
pub trait PoolManager<T> { fn reset_handle(&mut self, handle: fn(_: &mut T)) -> &mut Self; fn allow_expansion(&mut self, allow: bool) -> &mut Self; fn expand(&mut self, additional: usize, block: bool) -> bool; fn refill(&mut self, count: usize); }
fn reset_handle(&mut self, handle: fn(_: &mut T)) -> &mut Self
fn allow_expansion(&mut self, allow: bool) -> &mut Self
fn expand(&mut self, additional: usize, block: bool) -> bool
fn refill(&mut self, count: usize)
impl<T> PoolManager<T> for SyncPool<T> where T: Default,