Replace the CertStore atomically (lock-free)
(&self, new_store: Arc<CertStore>)
| 147 | |
| 148 | /// Replace the CertStore atomically (lock-free) |
| 149 | pub fn set(&self, new_store: Arc<CertStore>) { |
| 150 | self.store.store(new_store); |
| 151 | } |
| 152 | |
| 153 | /// List all domains |
| 154 | pub fn list_domains(&self) -> Vec<String> { |
no test coverage detected