[][src]Struct procspawn::Builder

pub struct Builder { /* fields omitted */ }

Process factory, which can be used in order to configure the properties of a process being created.

Methods can be chained on it in order to configure it.

Methods

impl Builder[src]

pub fn new() -> Self[src]

Generates the base configuration for spawning a thread, from which configuration methods can be chained.

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

Set an environment variable in the spawned process.

Equivalent to Command::env

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

Set environment variables in the spawned process.

Equivalent to Command::envs

pub fn env_remove<K: AsRef<OsStr>>(&mut self, key: K) -> &mut Self[src]

Removes an environment variable in the spawned process.

Equivalent to Command::env_remove

pub fn env_clear(&mut self) -> &mut Self[src]

Clears all environment variables in the spawned process.

Equivalent to Command::env_clear

pub fn stdin<T: Into<Stdio>>(&mut self, cfg: T) -> &mut Self[src]

Captures the stdin of the spawned process, allowing you to manually send data via JoinHandle::stdin

pub fn stdout<T: Into<Stdio>>(&mut self, cfg: T) -> &mut Self[src]

Captures the stdout of the spawned process, allowing you to manually receive data via JoinHandle::stdout

pub fn stderr<T: Into<Stdio>>(&mut self, cfg: T) -> &mut Self[src]

Captures the stderr of the spawned process, allowing you to manually receive data via JoinHandle::stderr

pub fn spawn<A: Serialize + for<'de> Deserialize<'de>, R: Serialize + for<'de> Deserialize<'de>>(
    &mut self,
    args: A,
    func: fn(_: A) -> R
) -> JoinHandle<R>
[src]

Spawns the process.

Trait Implementations

impl Debug for Builder[src]

impl Default for Builder[src]

Auto Trait Implementations

impl RefUnwindSafe for Builder

impl Send for Builder

impl Sync for Builder

impl Unpin for Builder

impl UnwindSafe for Builder

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,