(self)
| 628 | |
| 629 | impl StatusArg { |
| 630 | fn label(self) -> &'static str { |
| 631 | match self { |
| 632 | StatusArg::Idle => "idle", |
| 633 | StatusArg::Running => "running", |
| 634 | StatusArg::Blocked => "blocked", |
| 635 | StatusArg::Done => "done", |
| 636 | StatusArg::Error => "error", |
| 637 | } |
| 638 | } |
| 639 | } |
| 640 | |
| 641 | fn trace_root_or_bail() -> Result<PathBuf> { |
no outgoing calls
no test coverage detected