Set tool for execution
(mut self, tool: impl Into<String>)
| 167 | |
| 168 | /// Set tool for execution |
| 169 | pub fn with_tool(mut self, tool: impl Into<String>) -> Self { |
| 170 | self.tool = Some(tool.into()); |
| 171 | self |
| 172 | } |
| 173 | |
| 174 | /// Set dependency IDs |
| 175 | pub fn with_dependencies(mut self, deps: Vec<String>) -> Self { |
no outgoing calls