[][src]Trait s_crap::spawn::ShortProcess

pub trait ShortProcess {
    type Input;
    type Output;
    fn output_from(self, input: Self::Input) -> Result<Self::Output>;
}

Associated Types

type Input

type Output

Loading content...

Required methods

fn output_from(self, input: Self::Input) -> Result<Self::Output>

Loading content...

Implementations on Foreign Types

impl ShortProcess for Child[src]

type Input = String

type Output = String

Loading content...

Implementors

impl<'_> ShortProcess for Process<'_>[src]

type Input = (String, Child)

type Output = Vec<u8>

Loading content...