Get the current CertStore (lock-free)
(&self)
| 142 | |
| 143 | /// Get the current CertStore (lock-free) |
| 144 | pub fn get(&self) -> Guard<Arc<CertStore>> { |
| 145 | self.store.load() |
| 146 | } |
| 147 | |
| 148 | /// Replace the CertStore atomically (lock-free) |
| 149 | pub fn set(&self, new_store: Arc<CertStore>) { |
no test coverage detected