Load all catalogs from storage Loads the state of all registered catalogs from storage. This operation loads each catalog's state individually. # Returns `Ok(())` if all catalogs loaded successfully `Err(CatalogError)` if any catalog failed to load
(&mut self)
| 196 | /// * `Ok(())` if all catalogs loaded successfully |
| 197 | /// * `Err(CatalogError)` if any catalog failed to load |
| 198 | pub async fn load_all(&mut self) -> CatalogResult<()> { |
| 199 | // Storage operations are sync, just wrap in async context |
| 200 | self.registry.load_all() |
| 201 | } |
| 202 | |
| 203 | /// Save a specific catalog to storage |
| 204 | /// |