(&mut self, args: I)
| 38 | } |
| 39 | |
| 40 | pub fn args<I, S>(&mut self, args: I) -> &mut Self |
| 41 | where |
| 42 | I: IntoIterator<Item = S>, |
| 43 | S: AsRef<OsStr>, |
| 44 | { |
| 45 | for arg in args { |
| 46 | self.arg(arg.as_ref()); |
| 47 | } |
| 48 | self |
| 49 | } |
| 50 | |
| 51 | pub fn env<K, V>(&mut self, key: K, value: V) -> &mut Self |
| 52 | where |