(mut self, args: Vec<String>)
| 45 | } |
| 46 | |
| 47 | pub fn with_arguments(mut self, args: Vec<String>) -> Self { |
| 48 | self.arguments = args; |
| 49 | self |
| 50 | } |
| 51 | |
| 52 | pub fn with_variable(mut self, key: String, value: String) -> Self { |
| 53 | self.variables.insert(key, value); |
no outgoing calls