pub struct EquivManagerStats {
pub checks: u64,
pub hits: u64,
pub merges: u64,
pub classes: usize,
}Expand description
Statistics for the equivalence manager.
Fields§
§checks: u64Number of equivalence checks performed.
hits: u64Number of cache hits.
merges: u64Number of merges performed.
classes: usizeNumber of distinct equivalence classes remaining.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EquivManagerStats
impl RefUnwindSafe for EquivManagerStats
impl Send for EquivManagerStats
impl Sync for EquivManagerStats
impl Unpin for EquivManagerStats
impl UnsafeUnpin for EquivManagerStats
impl UnwindSafe for EquivManagerStats
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