(&self)
| 61 | |
| 62 | impl MultiRaftReady { |
| 63 | pub fn is_empty(&self) -> bool { |
| 64 | self.groups.iter().all(|(_gid, r)| r.is_empty()) |
| 65 | } |
| 66 | |
| 67 | /// Total committed entries across all groups. |
| 68 | pub fn total_committed(&self) -> usize { |
no test coverage detected