Searched defs:Command (Results 1 – 1 of 1) sorted by relevance
24 pub struct Command { struct25 std: StdCommand, argument32 /// use std::process::Command; argument36 impl From<StdCommand> for Command { implementation45 impl Command { implementation90 pub fn kill_on_drop(&mut self, kill: bool) -> &mut Command { in kill_on_drop()110 pub fn arg<S: AsRef<OsStr>>(&mut self, arg: S) -> &mut Command { in arg() method129 pub fn args<I: IntoIterator<Item = S>, S: AsRef<OsStr>>(&mut self, args: I) -> &mut Command { in args() method148 pub fn env<K: AsRef<OsStr>, V: AsRef<OsStr>>(&mut self, key: K, val: V) -> &mut Command { in env()202 pub fn env_remove<S: AsRef<OsStr>>(&mut self, key: S) -> &mut Command { in env_remove()[all …]