(&mut self, args: I)
| 1967 | } |
| 1968 | |
| 1969 | pub fn args<I, S>(&mut self, args: I) -> &mut Self |
| 1970 | where |
| 1971 | I: IntoIterator<Item = S>, |
| 1972 | S: AsRef<OsStr>, |
| 1973 | { |
| 1974 | self.command.args(args); |
| 1975 | self |
| 1976 | } |
| 1977 | |
| 1978 | pub fn default_disks(&mut self) -> &mut Self { |
| 1979 | self.default_disks_inner(true) |
no outgoing calls