(&self)
| 134 | } |
| 135 | |
| 136 | fn cert_path(&self) -> Option<PathBuf> { |
| 137 | self.tls_cert.clone().or_else(|| self.cached_cert_path()) |
| 138 | } |
| 139 | |
| 140 | fn key_path(&self) -> Option<PathBuf> { |
| 141 | self.tls_key.clone().or_else(|| self.cached_key_path()) |
no test coverage detected