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

Method args

src/executor/helpers/command.rs:40–49  ·  view source on GitHub ↗
(&mut self, args: I)

Source from the content-addressed store, hash-verified

38 }
39
40 pub fn args<I, S>(&mut self, args: I) -> &mut Self
41 where
42 I: IntoIterator<Item = S>,
43 S: AsRef<OsStr>,
44 {
45 for arg in args {
46 self.arg(arg.as_ref());
47 }
48 self
49 }
50
51 pub fn env<K, V>(&mut self, key: K, value: V) -> &mut Self
52 where

Calls 1

argMethod · 0.80