pub struct AdaptiveTuningStats {
pub tuning_operations: u64,
pub successful_tunings: u64,
pub failed_tunings: u64,
pub success_rate: f64,
pub avg_improvement: f64,
pub current_confidence: f64,
pub last_tuning: SystemTime,
}Expand description
Adaptive tuning statistics
Fields§
§tuning_operations: u64Total tuning operations performed
successful_tunings: u64Successful tuning operations (improved performance)
failed_tunings: u64Failed tuning operations (degraded performance)
success_rate: f64Success rate
avg_improvement: f64Average performance improvement
current_confidence: f64Current tuning confidence
last_tuning: SystemTimeLast tuning timestamp
Trait Implementations§
Source§impl Clone for AdaptiveTuningStats
impl Clone for AdaptiveTuningStats
Source§fn clone(&self) -> AdaptiveTuningStats
fn clone(&self) -> AdaptiveTuningStats
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 moreSource§impl Debug for AdaptiveTuningStats
impl Debug for AdaptiveTuningStats
Source§impl Default for AdaptiveTuningStats
impl Default for AdaptiveTuningStats
Source§impl<'de> Deserialize<'de> for AdaptiveTuningStats
impl<'de> Deserialize<'de> for AdaptiveTuningStats
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AdaptiveTuningStats
impl RefUnwindSafe for AdaptiveTuningStats
impl Send for AdaptiveTuningStats
impl Sync for AdaptiveTuningStats
impl Unpin for AdaptiveTuningStats
impl UnsafeUnpin for AdaptiveTuningStats
impl UnwindSafe for AdaptiveTuningStats
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