(self, run_command: impl Into<String>)
| 433 | } |
| 434 | |
| 435 | pub fn with_run_command(self, run_command: impl Into<String>) -> Self { |
| 436 | TestBuilder { |
| 437 | run_command: Some(run_command.into()), |
| 438 | ..self |
| 439 | } |
| 440 | } |
| 441 | |
| 442 | pub fn with_generate_private_items(self, include_private: bool) -> Self { |
| 443 | TestBuilder { |
no outgoing calls