(&self)
| 142 | } |
| 143 | |
| 144 | fn ca_path(&self) -> Option<PathBuf> { |
| 145 | self.tls_ca.clone().or_else(|| self.cached_ca_path()) |
| 146 | } |
| 147 | |
| 148 | fn cached_cert_path(&self) -> Option<PathBuf> { |
| 149 | let cache = self.config_dir().map(|p| p.join("cert.pem")); |
no test coverage detected