Returns the number of pages dropped by the pool because the pool was at capacity.
(&self)
| 104 | |
| 105 | /// Returns the number of pages dropped by the pool because the pool was at capacity. |
| 106 | pub fn dropped_count(&self) -> usize { |
| 107 | self.inner.dropped_count.load(Ordering::Relaxed) |
| 108 | } |
| 109 | |
| 110 | /// Returns the number of fresh objects allocated through the pool. |
| 111 | pub fn new_allocated_count(&self) -> usize { |
no test coverage detected