pub struct EnvStats {
pub total: usize,
pub axioms: usize,
pub definitions: usize,
pub theorems: usize,
pub inductives: usize,
pub constructors: usize,
pub recursors: usize,
}Expand description
Environment statistics summary.
Fields§
§total: usizeTotal constants.
axioms: usizeAxioms.
definitions: usizeDefinitions.
theorems: usizeTheorems.
inductives: usizeInductive types.
constructors: usizeConstructors.
recursors: usizeRecursors.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EnvStats
impl RefUnwindSafe for EnvStats
impl Send for EnvStats
impl Sync for EnvStats
impl Unpin for EnvStats
impl UnsafeUnpin for EnvStats
impl UnwindSafe for EnvStats
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