pub struct PerformanceSummary {
pub total_operations: usize,
pub total_compressed_bytes: usize,
pub total_uncompressed_bytes: usize,
pub overall_compression_ratio: f64,
pub cache_performance: CachePerformance,
pub algorithm_metrics: Vec<AlgorithmPerformanceMetrics>,
pub memory_efficiency: MemoryEfficiency,
pub access_patterns: AccessPatternSummary,
}Expand description
Comprehensive performance summary
Fields§
§total_operations: usize§total_compressed_bytes: usize§total_uncompressed_bytes: usize§overall_compression_ratio: f64§cache_performance: CachePerformance§algorithm_metrics: Vec<AlgorithmPerformanceMetrics>§memory_efficiency: MemoryEfficiency§access_patterns: AccessPatternSummaryTrait Implementations§
Auto Trait Implementations§
impl Freeze for PerformanceSummary
impl RefUnwindSafe for PerformanceSummary
impl Send for PerformanceSummary
impl Sync for PerformanceSummary
impl Unpin for PerformanceSummary
impl UnwindSafe for PerformanceSummary
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