pub struct RunnerConfig {
pub seed_override: Option<u64>,
pub verify_reproducibility: bool,
pub reproducibility_runs: usize,
pub emc_check: bool,
pub output_dir: PathBuf,
pub verbose: bool,
}Expand description
Configuration for the experiment runner.
Fields§
§seed_override: Option<u64>Override seed (if specified via CLI)
verify_reproducibility: boolWhether to verify reproducibility
reproducibility_runs: usizeNumber of runs for reproducibility check
emc_check: boolWhether to generate EMC compliance report
output_dir: PathBufOutput directory for artifacts
verbose: boolVerbose output
Trait Implementations§
Source§impl Clone for RunnerConfig
impl Clone for RunnerConfig
Source§fn clone(&self) -> RunnerConfig
fn clone(&self) -> RunnerConfig
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 RunnerConfig
impl Debug for RunnerConfig
Auto Trait Implementations§
impl Freeze for RunnerConfig
impl RefUnwindSafe for RunnerConfig
impl Send for RunnerConfig
impl Sync for RunnerConfig
impl Unpin for RunnerConfig
impl UnsafeUnpin for RunnerConfig
impl UnwindSafe for RunnerConfig
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