pub struct Options {
pub warmup: u32,
pub min_iterations: u32,
pub max_iterations: u32,
pub time_budget: Duration,
pub target_cv: f64,
pub batch_size: BatchSize,
}Expand description
Per-bench tuning knobs. Defaults match the JS / aatxe-core defaults so a service can swap between languages without changing its CI gate.
Fields§
§warmup: u32§min_iterations: u32§max_iterations: u32§time_budget: Duration§target_cv: f64§batch_size: BatchSizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for Options
impl RefUnwindSafe for Options
impl Send for Options
impl Sync for Options
impl Unpin for Options
impl UnsafeUnpin for Options
impl UnwindSafe for Options
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