(self)
| 21 | |
| 22 | impl HarnessWorkflow { |
| 23 | pub const fn id(self) -> &'static str { |
| 24 | match self { |
| 25 | Self::Sdd => "sdd", |
| 26 | Self::DeepReview => "deep-review", |
| 27 | Self::DeepResearch => "deep-research", |
| 28 | Self::MiniApp => "miniapp", |
| 29 | Self::FunctionAgent => "function-agent", |
| 30 | } |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | impl fmt::Display for HarnessWorkflow { |
no outgoing calls
no test coverage detected