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
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