| 16 | /// Schema information for a catalog |
| 17 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 18 | pub struct CatalogSchema { |
| 19 | /// Name of the catalog type |
| 20 | pub name: String, |
| 21 | /// Version of the catalog implementation |
| 22 | pub version: String, |
| 23 | /// List of entity types this catalog can manage |
| 24 | pub entities: Vec<String>, |
| 25 | /// List of supported operations |
| 26 | pub operations: Vec<String>, |
| 27 | } |
| 28 | |
| 29 | /// Core trait that all catalog providers must implement |
| 30 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected