[][src]Trait unix_exec_piper::Builder

pub trait Builder<To> {
    fn build(self) -> To;
}

Common trait for the two builders.

Required methods

fn build(self) -> To

Loading content...

Implementors

impl Builder<BasicCmd> for BasicCmdBuilder[src]

fn build(self) -> BasicCmd[src]

Builds a BasicCmd-object, if self is valid.

impl Builder<CmdChain> for CmdChainBuilder[src]

fn build(self) -> CmdChain[src]

Builds a CmdChain-object, if self is valid.

Loading content...