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

Class CommandBuilder

src/executor/helpers/command.rs:8–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6
7#[derive(Debug)]
8pub struct CommandBuilder {
9 program: OsString,
10 argv: Vec<OsString>,
11 envs: BTreeMap<OsString, OsString>,
12 cwd: Option<OsString>,
13}
14
15impl CommandBuilder {
16 pub fn new<S: AsRef<OsStr>>(program: S) -> Self {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected