pub struct TuningPresets;Expand description
Tuning presets for common scenarios
Implementations§
Source§impl TuningPresets
impl TuningPresets
Sourcepub fn conservative() -> AutoTunerConfig
pub fn conservative() -> AutoTunerConfig
Conservative tuning (minimal changes, high confidence)
Sourcepub fn balanced() -> AutoTunerConfig
pub fn balanced() -> AutoTunerConfig
Balanced tuning (moderate changes, good confidence)
Sourcepub fn aggressive() -> AutoTunerConfig
pub fn aggressive() -> AutoTunerConfig
Aggressive tuning (larger changes, lower confidence threshold)
Sourcepub fn performance() -> AutoTunerConfig
pub fn performance() -> AutoTunerConfig
Performance-focused tuning (maximize throughput)
Sourcepub fn cost_optimized() -> AutoTunerConfig
pub fn cost_optimized() -> AutoTunerConfig
Cost-focused tuning (minimize resource usage)
Auto Trait Implementations§
impl Freeze for TuningPresets
impl RefUnwindSafe for TuningPresets
impl Send for TuningPresets
impl Sync for TuningPresets
impl Unpin for TuningPresets
impl UnwindSafe for TuningPresets
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> 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