[][src]Struct rust_process_interface_library::Command

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

impl Command[src]

pub fn new<S: AsRef<str>>(prog: S) -> Command[src]

pub fn arg<S: AsRef<str>>(&mut self, arg: S) -> &mut Command[src]

pub fn args<I, S>(&mut self, args: I) -> &mut Command where
    I: IntoIterator<Item = S>,
    S: AsRef<str>, 
[src]

pub fn args_clear(&mut self) -> &mut Command[src]

pub fn env<K, V>(&mut self, key: K, val: V) -> &mut Command where
    K: AsRef<str>,
    V: AsRef<str>, 
[src]

pub fn envs<I, K, V>(&mut self, vars: I) -> &mut Command where
    I: IntoIterator<Item = (K, V)>,
    K: AsRef<str>,
    V: AsRef<str>, 
[src]

pub fn stdin<S: AsRef<str>>(&mut self, buf: S) -> &mut Command[src]

pub fn stdin_u8(&mut self, buf: u8) -> &mut Command[src]

pub fn stdin_u8vec<S: AsRef<[u8]>>(&mut self, buf: S) -> &mut Command[src]

pub fn timeout(&mut self, time: u32) -> &mut Command[src]

pub fn output(&mut self) -> Output[src]

Auto Trait Implementations

impl RefUnwindSafe for Command

impl Send for Command

impl Sync for Command

impl Unpin for Command

impl UnwindSafe for Command

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.