Count remaining Pending steps
(&self)
| 270 | |
| 271 | /// Count remaining Pending steps |
| 272 | pub fn pending_count(&self) -> usize { |
| 273 | self.steps |
| 274 | .iter() |
| 275 | .filter(|s| s.status == TaskStatus::Pending) |
| 276 | .count() |
| 277 | } |
| 278 | |
| 279 | /// Detect deadlock: Pending steps remain but none are ready to execute. |
| 280 | /// |