pub trait Returnable: Send + Sync + 'static { // Provided method fn on_return(&mut self) { ... } }
Trait for items that can be returned to a pool
Called when an item is returned to the pool