pub struct Command {
pub name: String,
pub args_list: Vec<String>,
pub envp_map: HashMap<String, String>,
pub timeout_val: u32,
pub stdin_str: Vec<u8>,
}
Fields§
§name: String
The program name.
args_list: Vec<String>
The argument list.
envp_map: HashMap<String, String>
The environment map.
timeout_val: u32
The timeout value (milliseconds).
stdin_str: Vec<u8>
Buffered stdin.
Implementations§
Source§impl Command
impl Command
pub fn new<S: AsRef<str>>(prog: S) -> Command
pub fn arg<S: AsRef<str>>(&mut self, arg: S) -> &mut Command
pub fn args<I, S>(&mut self, args: I) -> &mut Command
pub fn args_clear(&mut self) -> &mut Command
pub fn env<K, V>(&mut self, key: K, val: V) -> &mut Command
pub fn envs<I, K, V>(&mut self, vars: I) -> &mut Command
pub fn stdin<S: AsRef<str>>(&mut self, buf: S) -> &mut Command
pub fn stdin_u8(&mut self, buf: u8) -> &mut Command
pub fn stdin_u8vec<S: AsRef<[u8]>>(&mut self, buf: S) -> &mut Command
pub fn timeout(&mut self, time: u32) -> &mut Command
pub fn output(&mut self) -> Output
Auto Trait Implementations§
impl Freeze for Command
impl RefUnwindSafe for Command
impl Send for Command
impl Sync for Command
impl Unpin for Command
impl UnwindSafe for Command
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more