Retrieves the list of available catalog names.
(&self)
| 1900 | |
| 1901 | /// Retrieves the list of available catalog names. |
| 1902 | pub fn catalog_names(&self) -> Vec<String> { |
| 1903 | self.state.read().catalog_list().catalog_names() |
| 1904 | } |
| 1905 | |
| 1906 | /// Retrieves a [`CatalogProvider`] instance by name |
| 1907 | pub fn catalog(&self, name: &str) -> Option<Arc<dyn CatalogProvider>> { |
no test coverage detected