pub struct AdaptiveSelectionConfig {
pub enable_learning: bool,
pub exploration_factor: f64,
pub min_confidence_threshold: f64,
pub max_concurrent_benchmarks: usize,
pub benchmark_timeout: Duration,
pub history_retention: Duration,
}Expand description
Adaptive selection configuration
Fields§
§enable_learning: boolEnable learning from performance feedback
exploration_factor: f64Exploration vs exploitation trade-off
min_confidence_threshold: f64Minimum confidence threshold for selections
max_concurrent_benchmarks: usizeMaximum number of concurrent benchmarks
benchmark_timeout: DurationBenchmark timeout
history_retention: DurationHistory retention period
Trait Implementations§
Source§impl Clone for AdaptiveSelectionConfig
impl Clone for AdaptiveSelectionConfig
Source§fn clone(&self) -> AdaptiveSelectionConfig
fn clone(&self) -> AdaptiveSelectionConfig
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 AdaptiveSelectionConfig
impl Debug for AdaptiveSelectionConfig
Auto Trait Implementations§
impl Freeze for AdaptiveSelectionConfig
impl RefUnwindSafe for AdaptiveSelectionConfig
impl Send for AdaptiveSelectionConfig
impl Sync for AdaptiveSelectionConfig
impl Unpin for AdaptiveSelectionConfig
impl UnsafeUnpin for AdaptiveSelectionConfig
impl UnwindSafe for AdaptiveSelectionConfig
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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