pub struct WorkspaceUiState {
pub has_ontology: bool,
pub ontology_count: usize,
pub is_dirty: bool,
pub has_selection: bool,
pub selection_iri: Option<String>,
pub selection_editable: bool,
pub reasoner_running: bool,
pub reasoner_dirty: bool,
pub reasoner_consistent: Option<bool>,
pub active_ontology_id: Option<String>,
pub stats: Option<CatalogStats>,
pub ontology_registry: Vec<OntologyRegistryEntrySnapshot>,
}Fields§
§has_ontology: bool§ontology_count: usize§is_dirty: bool§has_selection: bool§selection_iri: Option<String>§selection_editable: bool§reasoner_running: bool§reasoner_dirty: bool§reasoner_consistent: Option<bool>§active_ontology_id: Option<String>§stats: Option<CatalogStats>§ontology_registry: Vec<OntologyRegistryEntrySnapshot>Trait Implementations§
Source§impl Debug for WorkspaceUiState
impl Debug for WorkspaceUiState
Auto Trait Implementations§
impl Freeze for WorkspaceUiState
impl RefUnwindSafe for WorkspaceUiState
impl Send for WorkspaceUiState
impl Sync for WorkspaceUiState
impl Unpin for WorkspaceUiState
impl UnsafeUnpin for WorkspaceUiState
impl UnwindSafe for WorkspaceUiState
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