pub struct CatalogSnapshot {
pub documents: Vec<OntologyDocument>,
pub entities: Vec<Entity>,
pub hierarchy: ClassHierarchy,
pub diagnostics: Vec<DiagnosticSummary>,
pub reasoner: Option<ReasonerSnapshot>,
pub stats: Option<CatalogStats>,
pub active_ontology_id: Option<String>,
}Fields§
§documents: Vec<OntologyDocument>§entities: Vec<Entity>§hierarchy: ClassHierarchy§diagnostics: Vec<DiagnosticSummary>§reasoner: Option<ReasonerSnapshot>§stats: Option<CatalogStats>Workspace catalog statistics (same shape as indexWorkspace stats).
active_ontology_id: Option<String>Active ontology document id (path or ontology IRI) when set by the client.
Trait Implementations§
Source§impl Debug for CatalogSnapshot
impl Debug for CatalogSnapshot
Auto Trait Implementations§
impl Freeze for CatalogSnapshot
impl RefUnwindSafe for CatalogSnapshot
impl Send for CatalogSnapshot
impl Sync for CatalogSnapshot
impl Unpin for CatalogSnapshot
impl UnsafeUnpin for CatalogSnapshot
impl UnwindSafe for CatalogSnapshot
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more