pub struct EngineStatus {
pub node_count: u32,
pub edge_count: u32,
pub read_only: bool,
pub overlay_edge_count: usize,
pub tombstoned_edges: usize,
}Expand description
Runtime status returned by admin/discovery surfaces.
Fields§
§node_count: u32Node count recorded in Postgres metadata.
edge_count: u32Edge count recorded in Postgres metadata.
read_only: boolWhether the artifact is marked read-only.
overlay_edge_count: usizeNumber of overlay edge insertions not yet compacted.
tombstoned_edges: usizeNumber of tombstoned base edges.
Trait Implementations§
Source§impl Clone for EngineStatus
impl Clone for EngineStatus
Source§fn clone(&self) -> EngineStatus
fn clone(&self) -> EngineStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EngineStatus
Source§impl Debug for EngineStatus
impl Debug for EngineStatus
impl Eq for EngineStatus
Source§impl PartialEq for EngineStatus
impl PartialEq for EngineStatus
Source§fn eq(&self, other: &EngineStatus) -> bool
fn eq(&self, other: &EngineStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EngineStatus
Auto Trait Implementations§
impl Freeze for EngineStatus
impl RefUnwindSafe for EngineStatus
impl Send for EngineStatus
impl Sync for EngineStatus
impl Unpin for EngineStatus
impl UnsafeUnpin for EngineStatus
impl UnwindSafe for EngineStatus
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