pub struct IncrementalStats {
pub total_nodes: usize,
pub scope_level: usize,
pub clause_mappings: usize,
pub enabled: bool,
}Expand description
Statistics about incremental proof construction
Fields§
§total_nodes: usizeTotal number of proof nodes
scope_level: usizeCurrent scope level
clause_mappings: usizeNumber of clause mappings
enabled: boolWhether recording is enabled
Trait Implementations§
Source§impl Clone for IncrementalStats
impl Clone for IncrementalStats
Source§fn clone(&self) -> IncrementalStats
fn clone(&self) -> IncrementalStats
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 IncrementalStats
impl Debug for IncrementalStats
impl Copy for IncrementalStats
Auto Trait Implementations§
impl Freeze for IncrementalStats
impl RefUnwindSafe for IncrementalStats
impl Send for IncrementalStats
impl Sync for IncrementalStats
impl Unpin for IncrementalStats
impl UnsafeUnpin for IncrementalStats
impl UnwindSafe for IncrementalStats
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