MCPcopy Create free account
hub / github.com/CodSpeedHQ/codspeed / ExecArgs

Class ExecArgs

src/cli/exec/mod.rs:21–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19
20#[derive(Args, Debug)]
21pub struct ExecArgs {
22 #[command(flatten)]
23 pub shared: ExecAndRunSharedArgs,
24
25 #[command(flatten)]
26 pub walltime_args: exec_harness::walltime::WalltimeExecutionArgs,
27
28 /// Optional benchmark name (defaults to command filename)
29 #[arg(long)]
30 pub name: Option<String>,
31
32 /// The command to execute with the exec harness
33 pub command: Vec<String>,
34}
35
36impl ExecArgs {
37 /// Merge CLI args with project config if available

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected