pub struct ConversionStats {
pub checks: usize,
pub successes: usize,
pub reductions: usize,
pub cache_hits: usize,
}Expand description
Statistics for conversion checking
Fields§
§checks: usizeNumber of conversions checked
successes: usizeNumber of successful conversions
reductions: usizeNumber of WHNF reductions
cache_hits: usizeCache hits
Trait Implementations§
Source§impl Clone for ConversionStats
impl Clone for ConversionStats
Source§fn clone(&self) -> ConversionStats
fn clone(&self) -> ConversionStats
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 ConversionStats
impl Debug for ConversionStats
Source§impl Default for ConversionStats
impl Default for ConversionStats
Source§fn default() -> ConversionStats
fn default() -> ConversionStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ConversionStats
impl RefUnwindSafe for ConversionStats
impl Send for ConversionStats
impl Sync for ConversionStats
impl Unpin for ConversionStats
impl UnwindSafe for ConversionStats
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