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

Method envs

src/executor/helpers/command.rs:61–71  ·  view source on GitHub ↗
(&mut self, vars: I)

Source from the content-addressed store, hash-verified

59 }
60
61 pub fn envs<I, K, V>(&mut self, vars: I) -> &mut Self
62 where
63 I: IntoIterator<Item = (K, V)>,
64 K: AsRef<OsStr>,
65 V: AsRef<OsStr>,
66 {
67 for (k, v) in vars {
68 self.env(k, v);
69 }
70 self
71 }
72
73 pub fn current_dir<D>(&mut self, dir: D)
74 where

Callers 5

startMethod · 0.80
wrap_commandMethod · 0.80
buildMethod · 0.80
measureFunction · 0.80

Calls 1

envMethod · 0.80

Tested by

no test coverage detected