Adds multiple arguments to pass to `reth`. Pass any args that is not supported by the builder.
(mut self, args: I)
| 435 | /// |
| 436 | /// Pass any args that is not supported by the builder. |
| 437 | pub fn args<I, S>(mut self, args: I) -> Self |
| 438 | where |
| 439 | I: IntoIterator<Item = S>, |
| 440 | S: Into<OsString>, |
| 441 | { |
| 442 | for arg in args { |
| 443 | self = self.arg(arg); |
| 444 | } |
| 445 | self |
| 446 | } |
| 447 | |
| 448 | /// Consumes the builder and spawns `reth`. |
| 449 | /// |