pub struct ProofStats {
pub generated: u64,
pub verified: u64,
pub rejected: u64,
pub cache_entries: u32,
pub cache_hits: u64,
pub cache_misses: u64,
pub tier0_count: u64,
pub tier1_count: u64,
pub tier2_count: u64,
}Expand description
Proof subsystem statistics.
Fields§
§generated: u64Total proofs generated.
verified: u64Total proofs verified.
rejected: u64Total proofs rejected.
cache_entries: u32Current cache entries.
cache_hits: u64Cache hit count.
cache_misses: u64Cache miss count.
tier0_count: u64Reflex tier proofs.
tier1_count: u64Standard tier proofs.
tier2_count: u64Deep tier proofs.
Trait Implementations§
Source§impl Clone for ProofStats
impl Clone for ProofStats
Source§fn clone(&self) -> ProofStats
fn clone(&self) -> ProofStats
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 ProofStats
impl Debug for ProofStats
Source§impl Default for ProofStats
impl Default for ProofStats
Source§fn default() -> ProofStats
fn default() -> ProofStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ProofStats
impl RefUnwindSafe for ProofStats
impl Send for ProofStats
impl Sync for ProofStats
impl Unpin for ProofStats
impl UnsafeUnpin for ProofStats
impl UnwindSafe for ProofStats
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