Trait ActiveProcess

Source
pub trait ActiveProcess {
    type Input;

    // Required method
    fn output_from(&mut self, input: Self::Input) -> Result<String>;
}

Required Associated Types§

Required Methods§

Source

fn output_from(&mut self, input: Self::Input) -> Result<String>

Implementations on Foreign Types§

Source§

impl ActiveProcess for Child

Source§

type Input = String

Source§

fn output_from(&mut self, input: Self::Input) -> Result<String>

Implementors§