Return the peak value
(&self)
| 334 | |
| 335 | /// Return the peak value |
| 336 | fn peak(&self) -> usize { |
| 337 | self.peak.load(Ordering::Relaxed) |
| 338 | } |
| 339 | |
| 340 | /// Grows the tracked consumer's reserved size, |
| 341 | /// should be called after the pool has successfully performed the grow(). |
no test coverage detected