(&mut self, step: Task)
| 233 | } |
| 234 | |
| 235 | pub fn add_step(&mut self, step: Task) { |
| 236 | self.steps.push(step); |
| 237 | self.estimated_steps = self.steps.len(); |
| 238 | } |
| 239 | |
| 240 | pub fn add_required_tool(&mut self, tool: impl Into<String>) { |
| 241 | let tool_str = tool.into(); |