Home
last modified time | relevance | path

Searched defs:Command (Results 1 – 1 of 1) sorted by relevance

/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/
Dcommand.rs24 pub struct Command { struct
25 std: StdCommand, argument
32 /// use std::process::Command; argument
36 impl From<StdCommand> for Command { implementation
45 impl Command { implementation
90 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() method
129 pub fn args<I: IntoIterator<Item = S>, S: AsRef<OsStr>>(&mut self, args: I) -> &mut Command { in args() method
148 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 …]