Retrieves the list of available catalog names
(&self)
| 281 | |
| 282 | /// Retrieves the list of available catalog names |
| 283 | fn catalog_names(&self) -> Vec<String> { |
| 284 | let cats = self.catalogs.read().unwrap(); |
| 285 | cats.keys().cloned().collect() |
| 286 | } |
| 287 | |
| 288 | /// Retrieves a specific catalog by name, provided it exists. |
| 289 | fn catalog(&self, name: &str) -> Option<Arc<dyn CatalogProvider>> { |
no test coverage detected