pub struct ProofGraphStats {
pub total_nodes: usize,
pub cache_hits: usize,
pub cache_misses: usize,
pub invalidations: usize,
pub justifications_added: usize,
}Expand description
Statistics about proof graph usage
Fields§
§total_nodes: usize§cache_hits: usize§cache_misses: usize§invalidations: usize§justifications_added: usizeTrait Implementations§
Source§impl Clone for ProofGraphStats
impl Clone for ProofGraphStats
Source§fn clone(&self) -> ProofGraphStats
fn clone(&self) -> ProofGraphStats
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 ProofGraphStats
impl Debug for ProofGraphStats
Source§impl Default for ProofGraphStats
impl Default for ProofGraphStats
Source§fn default() -> ProofGraphStats
fn default() -> ProofGraphStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ProofGraphStats
impl RefUnwindSafe for ProofGraphStats
impl Send for ProofGraphStats
impl Sync for ProofGraphStats
impl Unpin for ProofGraphStats
impl UnwindSafe for ProofGraphStats
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