Count of entries (including tombstones).
(&self)
| 109 | |
| 110 | /// Count of entries (including tombstones). |
| 111 | pub fn entry_count(&self) -> usize { |
| 112 | self.entries.len() |
| 113 | } |
| 114 | |
| 115 | /// Count of live (non-sentinel) entries — both tombstones and GDPR erasures |
| 116 | /// are excluded. |
no test coverage detected