pub struct AdvancedMemoryOptimizationReport<T> {
pub cache_prediction: CachePerformancePrediction,
pub compression_algorithm: CompressionAlgorithm,
pub numa_strategy: MemoryAllocationStrategy,
pub bandwidth_prediction: BandwidthSaturationPrediction,
pub optimization_score: f64,
pub recommendations: Vec<OptimizationRecommendation<T>>,
pub confidence: f64,
}Expand description
Comprehensive memory optimization report
Fields§
§cache_prediction: CachePerformancePredictionCache performance prediction
compression_algorithm: CompressionAlgorithmRecommended compression algorithm
numa_strategy: MemoryAllocationStrategyOptimal NUMA strategy
bandwidth_prediction: BandwidthSaturationPredictionBandwidth saturation prediction
optimization_score: f64Overall optimization score
recommendations: Vec<OptimizationRecommendation<T>>Detailed recommendations
confidence: f64Confidence in analysis
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for AdvancedMemoryOptimizationReport<T>
impl<T> RefUnwindSafe for AdvancedMemoryOptimizationReport<T>where
T: RefUnwindSafe,
impl<T> Send for AdvancedMemoryOptimizationReport<T>where
T: Send,
impl<T> Sync for AdvancedMemoryOptimizationReport<T>where
T: Sync,
impl<T> Unpin for AdvancedMemoryOptimizationReport<T>where
T: Unpin,
impl<T> UnsafeUnpin for AdvancedMemoryOptimizationReport<T>
impl<T> UnwindSafe for AdvancedMemoryOptimizationReport<T>where
T: UnwindSafe,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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