(self, client_project: impl Into<String>)
| 397 | } |
| 398 | |
| 399 | pub fn with_client(self, client_project: impl Into<String>) -> Self { |
| 400 | TestBuilder { |
| 401 | client_project: Some(client_project.into()), |
| 402 | ..self |
| 403 | } |
| 404 | } |
| 405 | |
| 406 | pub fn with_language(self, generate_language: impl Into<String>) -> Self { |
| 407 | TestBuilder { |
no outgoing calls