Count of live (non-sentinel) entries — both tombstones and GDPR erasures are excluded.
(&self)
| 115 | /// Count of live (non-sentinel) entries — both tombstones and GDPR erasures |
| 116 | /// are excluded. |
| 117 | pub fn live_cell_count(&self) -> usize { |
| 118 | self.entries |
| 119 | .values() |
| 120 | .filter(|v| !is_cell_sentinel(v)) |
| 121 | .count() |
| 122 | } |
| 123 | |
| 124 | pub fn last_lsn(&self) -> u64 { |
| 125 | self.last_lsn |
no test coverage detected