pub struct CacheStats {
pub order_mappings: usize,
pub symbol_mappings: usize,
pub hits: u64,
pub misses: u64,
pub hit_ratio: f64,
}Expand description
Cache statistics for monitoring and debugging
Fields§
§order_mappings: usizeTotal number of cached order mappings
symbol_mappings: usizeTotal number of cached symbol normalizations
hits: u64Number of cache hits
misses: u64Number of cache misses
hit_ratio: f64Cache hit ratio (0.0 - 1.0)
Implementations§
Source§impl CacheStats
impl CacheStats
Sourcepub fn update_hit_ratio(&mut self)
pub fn update_hit_ratio(&mut self)
Update hit ratio after new stats
Trait Implementations§
Source§impl Clone for CacheStats
impl Clone for CacheStats
Source§fn clone(&self) -> CacheStats
fn clone(&self) -> CacheStats
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CacheStats
impl Debug for CacheStats
Source§impl Default for CacheStats
impl Default for CacheStats
Source§fn default() -> CacheStats
fn default() -> CacheStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CacheStats
impl RefUnwindSafe for CacheStats
impl Send for CacheStats
impl Sync for CacheStats
impl Unpin for CacheStats
impl UnwindSafe for CacheStats
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