Returns the number of objects reused from the pool.
(&self)
| 114 | |
| 115 | /// Returns the number of objects reused from the pool. |
| 116 | pub fn reused_count(&self) -> usize { |
| 117 | self.inner.reused_count.load(Ordering::Relaxed) |
| 118 | } |
| 119 | |
| 120 | /// Returns the number of objects returned to the pool. |
| 121 | pub fn returned_count(&self) -> usize { |
no test coverage detected