Set status
(mut self, status: TaskStatus)
| 161 | |
| 162 | /// Set status |
| 163 | pub fn with_status(mut self, status: TaskStatus) -> Self { |
| 164 | self.status = status; |
| 165 | self |
| 166 | } |
| 167 | |
| 168 | /// Set tool for execution |
| 169 | pub fn with_tool(mut self, tool: impl Into<String>) -> Self { |
no outgoing calls