[][src]Struct unix_exec_piper::BasicCmdBuilder

pub struct BasicCmdBuilder { /* fields omitted */ }

Builder for BasicCmd.

Implementations

impl BasicCmdBuilder[src]

pub fn new() -> Self[src]

pub fn set_executable(self, executable: &str) -> Self[src]

pub fn add_arg(self, arg: &str) -> Self[src]

pub fn set_input_redirect_path(self, input_redirect_path: &str) -> Self[src]

pub fn set_output_redirect_path(self, output_redirect_path: &str) -> Self[src]

Trait Implementations

impl Builder<BasicCmd> for BasicCmdBuilder[src]

fn build(self) -> BasicCmd[src]

Builds a BasicCmd-object, if self is valid.

impl Debug for BasicCmdBuilder[src]

Auto Trait Implementations

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.