pub struct CacheStats {
pub cache_entries: usize,
pub hit_count: u64,
pub miss_count: u64,
pub hit_rate: f64,
}Expand description
缓存统计信息
Fields§
§cache_entries: usize缓存条目总数
hit_count: u64缓存命中次数
miss_count: u64缓存未命中次数
hit_rate: f64缓存命中率
Implementations§
Source§impl CacheStats
impl CacheStats
Sourcepub fn update_hit_rate(&mut self)
pub fn update_hit_rate(&mut self)
更新命中率
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§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CacheStats
impl Debug for CacheStats
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