Struct AdvancedOptimizationResult
pub struct AdvancedOptimizationResult {
pub processing_time: Duration,
pub optimizations_applied: Vec<String>,
pub performance_improvement: f64,
}Expand description
Result of advanced optimization processing
Fields§
§processing_time: Duration§optimizations_applied: Vec<String>§performance_improvement: f64Trait Implementations§
§impl Clone for AdvancedOptimizationResult
impl Clone for AdvancedOptimizationResult
§fn clone(&self) -> AdvancedOptimizationResult
fn clone(&self) -> AdvancedOptimizationResult
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 moreAuto Trait Implementations§
impl Freeze for AdvancedOptimizationResult
impl RefUnwindSafe for AdvancedOptimizationResult
impl Send for AdvancedOptimizationResult
impl Sync for AdvancedOptimizationResult
impl Unpin for AdvancedOptimizationResult
impl UnwindSafe for AdvancedOptimizationResult
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