pub struct GraphStoreStats {
pub node_count: usize,
pub symbol_count: usize,
pub alias_count: usize,
pub dependency_entries: usize,
pub dependent_entries: usize,
pub content_entries: usize,
pub db_size_bytes: u64,
}Expand description
Statistics about the graph store
Fields§
§node_count: usize§symbol_count: usize§alias_count: usize§dependency_entries: usize§dependent_entries: usize§content_entries: usize§db_size_bytes: u64Trait Implementations§
Source§impl Clone for GraphStoreStats
impl Clone for GraphStoreStats
Source§fn clone(&self) -> GraphStoreStats
fn clone(&self) -> GraphStoreStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GraphStoreStats
impl Debug for GraphStoreStats
Auto Trait Implementations§
impl Freeze for GraphStoreStats
impl RefUnwindSafe for GraphStoreStats
impl Send for GraphStoreStats
impl Sync for GraphStoreStats
impl Unpin for GraphStoreStats
impl UnwindSafe for GraphStoreStats
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