pub struct MemoryStats {
pub total_memory_budget: usize,
pub current_memory_usage: usize,
pub memory_usage_ratio: f64,
pub compression_stats: CompressionStats,
pub cache_hits: usize,
pub cache_misses: usize,
pub cache_hit_ratio: f64,
pub out_of_core_enabled: bool,
}
Expand description
Memory usage statistics
Fields§
§total_memory_budget: usize
§current_memory_usage: usize
§memory_usage_ratio: f64
§compression_stats: CompressionStats
§cache_hits: usize
§cache_misses: usize
§cache_hit_ratio: f64
§out_of_core_enabled: bool
Implementations§
Source§impl MemoryStats
impl MemoryStats
Sourcepub fn new(memory_budget: usize, out_of_core_enabled: bool) -> Self
pub fn new(memory_budget: usize, out_of_core_enabled: bool) -> Self
Create new memory statistics
Sourcepub fn update_memory_usage(&mut self, current_usage: usize)
pub fn update_memory_usage(&mut self, current_usage: usize)
Update memory usage
Sourcepub fn update_cache_stats(&mut self, hits: usize, misses: usize)
pub fn update_cache_stats(&mut self, hits: usize, misses: usize)
Update cache statistics
Sourcepub fn has_memory_pressure(&self, threshold: f64) -> bool
pub fn has_memory_pressure(&self, threshold: f64) -> bool
Check if memory pressure exists
Sourcepub fn available_memory(&self) -> usize
pub fn available_memory(&self) -> usize
Get available memory
Sourcepub fn memory_efficiency_score(&self) -> f64
pub fn memory_efficiency_score(&self) -> f64
Get memory efficiency score
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MemoryStats
impl RefUnwindSafe for MemoryStats
impl Send for MemoryStats
impl Sync for MemoryStats
impl Unpin for MemoryStats
impl UnwindSafe for MemoryStats
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more