Puts back an object into the pool.
(&self, object: T)
| 87 | |
| 88 | /// Puts back an object into the pool. |
| 89 | pub fn put(&self, object: T) { |
| 90 | self.inner.put(object); |
| 91 | } |
| 92 | |
| 93 | /// Puts back an object into the pool. |
| 94 | pub fn put_many(&self, objects: impl Iterator<Item = T>) { |