pub struct Stats {
pub nodes_live: usize,
pub nodes_tombstoned: usize,
pub edges: u64,
pub rules: Vec<RuleStats>,
}Expand description
Database-wide counters plus per-rule budget/fire stats.
Fields§
§nodes_live: usize§nodes_tombstoned: usize§edges: u64§rules: Vec<RuleStats>Trait Implementations§
impl Eq for Stats
impl StructuralPartialEq for Stats
Auto Trait Implementations§
impl Freeze for Stats
impl RefUnwindSafe for Stats
impl Send for Stats
impl Sync for Stats
impl Unpin for Stats
impl UnsafeUnpin for Stats
impl UnwindSafe for Stats
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