(&self)
| 138 | } |
| 139 | |
| 140 | fn key_path(&self) -> Option<PathBuf> { |
| 141 | self.tls_key.clone().or_else(|| self.cached_key_path()) |
| 142 | } |
| 143 | |
| 144 | fn ca_path(&self) -> Option<PathBuf> { |
| 145 | self.tls_ca.clone().or_else(|| self.cached_ca_path()) |
no test coverage detected