pub struct CheckStats {
pub num_axioms: usize,
pub num_definitions: usize,
pub num_theorems: usize,
pub num_opaques: usize,
pub num_failures: usize,
}Expand description
Statistics gathered during declaration checking.
Fields§
§num_axioms: usizeNumber of axioms checked.
num_definitions: usizeNumber of definitions checked.
num_theorems: usizeNumber of theorems checked.
num_opaques: usizeNumber of opaque definitions checked.
num_failures: usizeNumber of failures.
Implementations§
Trait Implementations§
Source§impl Clone for CheckStats
impl Clone for CheckStats
Source§fn clone(&self) -> CheckStats
fn clone(&self) -> CheckStats
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 CheckStats
impl Debug for CheckStats
Source§impl Default for CheckStats
impl Default for CheckStats
Source§fn default() -> CheckStats
fn default() -> CheckStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CheckStats
impl RefUnwindSafe for CheckStats
impl Send for CheckStats
impl Sync for CheckStats
impl Unpin for CheckStats
impl UnsafeUnpin for CheckStats
impl UnwindSafe for CheckStats
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