Build the immutable CertStore
(self)
| 261 | |
| 262 | /// Build the immutable CertStore |
| 263 | pub fn build(self) -> CertStore { |
| 264 | CertStore { |
| 265 | exact_certs: self.exact_certs, |
| 266 | wildcard_certs: self.wildcard_certs, |
| 267 | cert_data: self.cert_data, |
| 268 | } |
| 269 | } |
| 270 | } |
| 271 | |
| 272 | impl Default for CertStoreBuilder { |
no outgoing calls