pub struct ProofStats {
pub proofs_constructed: u64,
pub proofs_verified: u64,
pub cache_hits: u64,
pub cache_misses: u64,
pub total_reductions: u64,
}Expand description
Verification statistics.
Fields§
§proofs_constructed: u64Total proofs constructed.
proofs_verified: u64Total proofs verified.
cache_hits: u64Cache hits (proof reused).
cache_misses: u64Cache misses (new proof constructed).
total_reductions: u64Total reduction steps consumed.
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