(mut self, path: impl Into<PathBuf>)
| 114 | } |
| 115 | |
| 116 | pub fn client_cert_pem(mut self, path: impl Into<PathBuf>) -> Self { |
| 117 | self.client_cert_pem = Some(path.into()); |
| 118 | self |
| 119 | } |
| 120 | |
| 121 | pub fn client_key_pem(mut self, path: impl Into<PathBuf>) -> Self { |
| 122 | self.client_key_pem = Some(path.into()); |
no outgoing calls