(mut self, path: impl Into<PathBuf>)
| 119 | } |
| 120 | |
| 121 | pub fn client_key_pem(mut self, path: impl Into<PathBuf>) -> Self { |
| 122 | self.client_key_pem = Some(path.into()); |
| 123 | self |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | /// Error returned for HTTP 409 / 422 responses that carry a recoverable |
no outgoing calls