Total memory consumed by this tier (backing buffer).
(&self)
| 93 | |
| 94 | /// Total memory consumed by this tier (backing buffer). |
| 95 | fn capacity_bytes(&self) -> usize { |
| 96 | self.buf.len() |
| 97 | } |
| 98 | |
| 99 | /// Memory actively occupied (occupied_slots * slot_size). |
| 100 | fn occupied_bytes(&self) -> usize { |
no test coverage detected